Class QuerySchedule
Settings on when and how frequently to run a query.
Implements
Inherited Members
Namespace: Google.Apis.DoubleClickBidManager.v2.Data
Assembly: Google.Apis.DoubleClickBidManager.v2.dll
Syntax
public class QuerySchedule : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EndDate
The date on which to end the scheduled runs. This field is required if frequency is not set to ONE_TIME
.
Otherwise, it will be ignored.
Declaration
[JsonProperty("endDate")]
public virtual Date EndDate { get; set; }
Property Value
Type | Description |
---|---|
Date |
Frequency
How frequently to run the query. If set to ONE_TIME
, the query will only be run when queries.run is
called.
Declaration
[JsonProperty("frequency")]
public virtual string Frequency { get; set; }
Property Value
Type | Description |
---|---|
string |
NextRunTimezoneCode
The canonical code for the timezone the query schedule is based on. Scheduled runs are usually conducted in
the morning of a given day. Defaults to America/New_York
.
Declaration
[JsonProperty("nextRunTimezoneCode")]
public virtual string NextRunTimezoneCode { get; set; }
Property Value
Type | Description |
---|---|
string |
StartDate
The date on which to begin the scheduled runs. This field is required if frequency is not set to ONE_TIME
.
Otherwise, it will be ignored.
Declaration
[JsonProperty("startDate")]
public virtual Date StartDate { get; set; }
Property Value
Type | Description |
---|---|
Date |