Class: Google::Apis::AuthorizedbuyersmarketplaceV1::DayPart

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb
more...

Overview

Defines targeting for a period of time on a specific week day.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DayPart

Returns a new instance of DayPart.

[View source]

482
483
484
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 482

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#day_of_weekString

Day of week for the period. Corresponds to the JSON property dayOfWeek

Returns:

  • (String)

466
467
468
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 466

def day_of_week
  @day_of_week
end

#end_timeGoogle::Apis::AuthorizedbuyersmarketplaceV1::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


473
474
475
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 473

def end_time
  @end_time
end

#start_timeGoogle::Apis::AuthorizedbuyersmarketplaceV1::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


480
481
482
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 480

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

487
488
489
490
491
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 487

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