class Google::Apis::ContentV2_1::CutoffTime

Attributes

hour[RW]

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` @return [Fixnum]

minute[RW]

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` @return [Fixnum]

timezone[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 2246
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 2251
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