Show / Hide Table of Contents

Class DayAndTimeAssignedTargetingOptionDetails

Representation of a segment of time defined on a specific day of the week and with a start and end time. The time represented by start_hour must be before the time represented by end_hour.

Inheritance
System.Object
DayAndTimeAssignedTargetingOptionDetails
Implements
Google.Apis.Requests.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.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class DayAndTimeAssignedTargetingOptionDetails : IDirectResponseSchema

Properties

DayOfWeek

Required. The day of the week for this day and time targeting setting.

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

EndHour

Required. The end hour for day and time targeting. Must be between 1 (1 hour after start of day) and 24 (end of day).

Declaration
[JsonProperty("endHour")]
public virtual int? EndHour { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

StartHour

Required. The start hour for day and time targeting. Must be between 0 (start of day) and 23 (1 hour before end of day).

Declaration
[JsonProperty("startHour")]
public virtual int? StartHour { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TimeZoneResolution

Required. The mechanism used to determine which timezone to use for this day and time targeting setting.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top