Class: Google::Apis::ResellerV1::Subscription::Plan::CommitmentInterval

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

Overview

Interval of the commitment if it is a commitment plan.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CommitmentInterval

Returns a new instance of CommitmentInterval.



443
444
445
# File 'generated/google/apis/reseller_v1/classes.rb', line 443

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

Instance Attribute Details

#end_timeString

End time of the commitment interval in milliseconds since Unix epoch. Corresponds to the JSON property endTime

Returns:

  • (String)


436
437
438
# File 'generated/google/apis/reseller_v1/classes.rb', line 436

def end_time
  @end_time
end

#start_timeString

Start time of the commitment interval in milliseconds since Unix epoch. Corresponds to the JSON property startTime

Returns:

  • (String)


441
442
443
# File 'generated/google/apis/reseller_v1/classes.rb', line 441

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



448
449
450
451
# File 'generated/google/apis/reseller_v1/classes.rb', line 448

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @start_time = args[:start_time] if args.key?(:start_time)
end