Class: Google::Apis::ResellerV1::Subscription::Plan::CommitmentInterval
- Inherits:
-
Object
- Object
- Google::Apis::ResellerV1::Subscription::Plan::CommitmentInterval
- 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
-
#end_time ⇒ String
End time of the commitment interval in milliseconds since Unix epoch.
-
#start_time ⇒ String
Start time of the commitment interval in milliseconds since Unix epoch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CommitmentInterval
constructor
A new instance of CommitmentInterval.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_time ⇒ String
End time of the commitment interval in milliseconds since Unix epoch.
Corresponds to the JSON property endTime
436 437 438 |
# File 'generated/google/apis/reseller_v1/classes.rb', line 436 def end_time @end_time end |
#start_time ⇒ String
Start time of the commitment interval in milliseconds since Unix epoch.
Corresponds to the JSON property startTime
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 |