Class: Stripe::V2::Core::AccountTokenCreateParams

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

Defined Under Namespace

Classes: Identity

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(contact_email: nil, display_name: nil, identity: nil) ⇒ AccountTokenCreateParams

Returns a new instance of AccountTokenCreateParams.



1003
1004
1005
1006
1007
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1003

def initialize(contact_email: nil, display_name: nil, identity: nil)
  @contact_email = contact_email
  @display_name = display_name
  @identity = identity
end

Instance Attribute Details

#contact_emailObject

The default contact email address for the Account. Required when configuring the account as a merchant or recipient.



997
998
999
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 997

def contact_email
  @contact_email
end

#display_nameObject

A descriptive name for the Account. This name will be surfaced in the Stripe Dashboard and on any invoices sent to the Account.



999
1000
1001
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 999

def display_name
  @display_name
end

#identityObject

Information about the company, individual, and business represented by the Account.



1001
1002
1003
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1001

def identity
  @identity
end