Class: Google::Apis::ContentV2_1::CutoffTime
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::CutoffTime
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#hour ⇒ Fixnum
Hour of the cutoff time until which an order has to be placed to be processed in the same day.
-
#minute ⇒ Fixnum
Minute of the cutoff time until which an order has to be placed to be processed in the same day.
-
#timezone ⇒ String
Timezone identifier for the cutoff time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CutoffTime
constructor
A new instance of CutoffTime.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ CutoffTime
Returns a new instance of CutoffTime
1555 1556 1557 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1555 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hour ⇒ Fixnum
Hour of the cutoff time until which an order has to be placed to be processed
in the same day. Required.
Corresponds to the JSON property hour
1541 1542 1543 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1541 def hour @hour end |
#minute ⇒ Fixnum
Minute of the cutoff time until which an order has to be placed to be
processed in the same day. Required.
Corresponds to the JSON property minute
1547 1548 1549 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1547 def minute @minute end |
#timezone ⇒ String
Timezone identifier for the cutoff time. A list of identifiers can be found in
the AdWords API documentation. E.g. "Europe/Zurich". Required.
Corresponds to the JSON property timezone
1553 1554 1555 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1553 def timezone @timezone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1560 1561 1562 1563 1564 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1560 def update!(**args) @hour = args[:hour] if args.key?(:hour) @minute = args[:minute] if args.key?(:minute) @timezone = args[:timezone] if args.key?(:timezone) end |