class Google::Apis::Adexchangebuyer2V2beta1::DayPart
Daypart targeting message that specifies if the ad can be shown only during certain parts of a day/week.
Attributes
The day of the week to target. If unspecified, applicable to all days. Corresponds to the JSON property `dayOfWeek` @return [String]
Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`. Corresponds to the JSON property `endTime` @return [Google::Apis::Adexchangebuyer2V2beta1::TimeOfDay]
Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`. Corresponds to the JSON property `startTime` @return [Google::Apis::Adexchangebuyer2V2beta1::TimeOfDay]
Public Class Methods
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 1115 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 1120 def update!(**args) @day_of_week = args[:day_of_week] if args.key?(:day_of_week) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end