Class: Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_create_params.rb

Defined Under Namespace

Classes: Account, CardCreator, Storer

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(account: nil, card_creator: nil, storer: nil) ⇒ TermsOfService

Returns a new instance of TermsOfService.



1715
1716
1717
1718
1719
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1715

def initialize(account: nil, card_creator: nil, storer: nil)
  @account = 
  @card_creator = card_creator
  @storer = storer
end

Instance Attribute Details

#accountObject

Details on the Account’s acceptance of the [Stripe Services Agreement](docs.stripe.com/connect/updating-accounts#tos-acceptance).



1709
1710
1711
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1709

def 
  @account
end

#card_creatorObject

Details on the Account’s acceptance of Issuing-specific terms of service.



1711
1712
1713
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1711

def card_creator
  @card_creator
end

#storerObject

Details on the Account’s acceptance of Treasury-specific terms of service.



1713
1714
1715
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1713

def storer
  @storer
end