Class: Stripe::V2::Billing::ContractUpdateParams::LicenseQuantityAction::EffectiveAt
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::ContractUpdateParams::LicenseQuantityAction::EffectiveAt
- Defined in:
- lib/stripe/params/v2/billing/contract_update_params.rb
Instance Attribute Summary collapse
-
#timestamp ⇒ Object
The timestamp for the effective at.
-
#type ⇒ Object
The type of the effective at.
Instance Method Summary collapse
-
#initialize(timestamp: nil, type: nil) ⇒ EffectiveAt
constructor
A new instance of EffectiveAt.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(timestamp: nil, type: nil) ⇒ EffectiveAt
Returns a new instance of EffectiveAt.
15 16 17 18 |
# File 'lib/stripe/params/v2/billing/contract_update_params.rb', line 15 def initialize(timestamp: nil, type: nil) @timestamp = @type = type end |
Instance Attribute Details
#timestamp ⇒ Object
The timestamp for the effective at.
11 12 13 |
# File 'lib/stripe/params/v2/billing/contract_update_params.rb', line 11 def @timestamp end |
#type ⇒ Object
The type of the effective at.
13 14 15 |
# File 'lib/stripe/params/v2/billing/contract_update_params.rb', line 13 def type @type end |