Class: Stripe::V2::Billing::IntentService::CreateParams::Action::Subscribe::EffectiveAt

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/billing/intent_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(timestamp: nil, type: nil) ⇒ EffectiveAt

Returns a new instance of EffectiveAt.



231
232
233
234
# File 'lib/stripe/services/v2/billing/intent_service.rb', line 231

def initialize(timestamp: nil, type: nil)
  @timestamp = timestamp
  @type = type
end

Instance Attribute Details

#timestampObject

The timestamp at which the subscribe action will take effect. Only present if type is timestamp.



227
228
229
# File 'lib/stripe/services/v2/billing/intent_service.rb', line 227

def timestamp
  @timestamp
end

#typeObject

When the subscribe action will take effect.



229
230
231
# File 'lib/stripe/services/v2/billing/intent_service.rb', line 229

def type
  @type
end