Show / Hide Table of Contents

Class PricingSchedule

Pricing Schedule

Inheritance
System.Object
PricingSchedule
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dfareporting.v3_2.Data
Assembly: Google.Apis.Dfareporting.v3_2.dll
Syntax
public class PricingSchedule : IDirectResponseSchema

Properties

CapCostOption

Placement cap cost option.

Declaration
[JsonProperty("capCostOption")]
public virtual string CapCostOption { get; set; }
Property Value
Type Description
System.String

DisregardOverdelivery

Whether cap costs are ignored by ad serving.

Declaration
[JsonProperty("disregardOverdelivery")]
public virtual bool? DisregardOverdelivery { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

EndDate

Placement end date. This date must be later than, or the same day as, the placement start date, but not later than the campaign end date. If, for example, you set 6/25/2015 as both the start and end dates, the effective placement date is just that day only, 6/25/2015. The hours, minutes, and seconds of the end date should not be set, as doing so will result in an error. This field is required on insertion.

Declaration
[JsonProperty("endDate")]
public virtual string EndDate { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Flighted

Whether this placement is flighted. If true, pricing periods will be computed automatically.

Declaration
[JsonProperty("flighted")]
public virtual bool? Flighted { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

FloodlightActivityId

Floodlight activity ID associated with this placement. This field should be set when placement pricing type is set to PRICING_TYPE_CPA.

Declaration
[JsonProperty("floodlightActivityId")]
public virtual long? FloodlightActivityId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PricingPeriods

Pricing periods for this placement.

Declaration
[JsonProperty("pricingPeriods")]
public virtual IList<PricingSchedulePricingPeriod> PricingPeriods { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<PricingSchedulePricingPeriod>

PricingType

Placement pricing type. This field is required on insertion.

Declaration
[JsonProperty("pricingType")]
public virtual string PricingType { get; set; }
Property Value
Type Description
System.String

StartDate

Placement start date. This date must be later than, or the same day as, the campaign start date. The hours, minutes, and seconds of the start date should not be set, as doing so will result in an error. This field is required on insertion.

Declaration
[JsonProperty("startDate")]
public virtual string StartDate { get; set; }
Property Value
Type Description
System.String

TestingStartDate

Testing start date of this placement. The hours, minutes, and seconds of the start date should not be set, as doing so will result in an error.

Declaration
[JsonProperty("testingStartDate")]
public virtual string TestingStartDate { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top