Class: Stripe::Checkout::SessionCreateParams::AfterExpiration

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/checkout/session_create_params.rb

Defined Under Namespace

Classes: Recovery

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(recovery: nil) ⇒ AfterExpiration

Returns a new instance of AfterExpiration.



33
34
35
# File 'lib/stripe/params/checkout/session_create_params.rb', line 33

def initialize(recovery: nil)
  @recovery = recovery
end

Instance Attribute Details

#recoveryObject

Configure a Checkout Session that can be used to recover an expired session.



31
32
33
# File 'lib/stripe/params/checkout/session_create_params.rb', line 31

def recovery
  @recovery
end