Class: Google::Apis::Adexchangebuyer2V2beta1::DayPart
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::DayPart
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/adexchangebuyer2_v2beta1/classes.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
Daypart targeting message that specifies if the ad can be shown only during certain parts of a day/week.
Instance Attribute Summary collapse
-
#day_of_week ⇒ String
The day of the week to target.
-
#end_time ⇒ Google::Apis::Adexchangebuyer2V2beta1::TimeOfDay
Represents a time of day.
-
#start_time ⇒ Google::Apis::Adexchangebuyer2V2beta1::TimeOfDay
Represents a time of day.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DayPart
constructor
A new instance of DayPart.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DayPart
Returns a new instance of DayPart.
1116 1117 1118 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1116 def initialize(**args) update!(**args) end |
Instance Attribute Details
#day_of_week ⇒ String
The day of the week to target. If unspecified, applicable to all days.
Corresponds to the JSON property dayOfWeek
1100 1101 1102 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1100 def day_of_week @day_of_week end |
#end_time ⇒ 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 endTime
1107 1108 1109 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1107 def end_time @end_time end |
#start_time ⇒ 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
1114 1115 1116 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1114 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1121 1122 1123 1124 1125 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1121 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 |