Class: Stripe::V2::Core::AccountUpdateParams::Identity::Individual::AdditionalName
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountUpdateParams::Identity::Individual::AdditionalName
- Defined in:
- lib/stripe/params/v2/core/account_update_params.rb
Instance Attribute Summary collapse
-
#full_name ⇒ Object
The person’s full name.
-
#given_name ⇒ Object
The person’s first or given name.
-
#purpose ⇒ Object
The purpose or type of the additional name.
-
#surname ⇒ Object
The person’s last or family name.
Instance Method Summary collapse
-
#initialize(full_name: nil, given_name: nil, purpose: nil, surname: nil) ⇒ AdditionalName
constructor
A new instance of AdditionalName.
Methods inherited from RequestParams
Constructor Details
#initialize(full_name: nil, given_name: nil, purpose: nil, surname: nil) ⇒ AdditionalName
Returns a new instance of AdditionalName.
1708 1709 1710 1711 1712 1713 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1708 def initialize(full_name: nil, given_name: nil, purpose: nil, surname: nil) @full_name = full_name @given_name = given_name @purpose = purpose @surname = surname end |
Instance Attribute Details
#full_name ⇒ Object
The person’s full name.
1700 1701 1702 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1700 def full_name @full_name end |
#given_name ⇒ Object
The person’s first or given name.
1702 1703 1704 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1702 def given_name @given_name end |
#purpose ⇒ Object
The purpose or type of the additional name.
1704 1705 1706 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1704 def purpose @purpose end |
#surname ⇒ Object
The person’s last or family name.
1706 1707 1708 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1706 def surname @surname end |