Class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration
- Inherits:
-
Object
- Object
- Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/paymentsresellersubscription_v1/classes.rb,
lib/google/apis/paymentsresellersubscription_v1/representations.rb,
lib/google/apis/paymentsresellersubscription_v1/representations.rb
Overview
Describes the length of a period of a time.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
number of duration units to be included.
-
#unit ⇒ String
The unit used for the duration Corresponds to the JSON property
unit
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudPaymentsResellerSubscriptionV1Duration
constructor
A new instance of GoogleCloudPaymentsResellerSubscriptionV1Duration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudPaymentsResellerSubscriptionV1Duration
Returns a new instance of GoogleCloudPaymentsResellerSubscriptionV1Duration.
165 166 167 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 165 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
number of duration units to be included.
Corresponds to the JSON property count
158 159 160 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 158 def count @count end |
#unit ⇒ String
The unit used for the duration
Corresponds to the JSON property unit
163 164 165 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 163 def unit @unit end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
170 171 172 173 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 170 def update!(**args) @count = args[:count] if args.key?(:count) @unit = args[:unit] if args.key?(:unit) end |