Class: Stripe::V2::Core::AccountEvaluationCreateParams::AccountData::Defaults::Profile
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountEvaluationCreateParams::AccountData::Defaults::Profile
- Defined in:
- lib/stripe/params/v2/core/account_evaluation_create_params.rb
Instance Attribute Summary collapse
-
#business_url ⇒ Object
The business URL.
-
#doing_business_as ⇒ Object
Doing business as (DBA) name.
-
#product_description ⇒ Object
Description of the account’s product or service.
Instance Method Summary collapse
-
#initialize(business_url: nil, doing_business_as: nil, product_description: nil) ⇒ Profile
constructor
A new instance of Profile.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(business_url: nil, doing_business_as: nil, product_description: nil) ⇒ Profile
Returns a new instance of Profile.
18 19 20 21 22 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 18 def initialize(business_url: nil, doing_business_as: nil, product_description: nil) @business_url = business_url @doing_business_as = doing_business_as @product_description = product_description end |
Instance Attribute Details
#business_url ⇒ Object
The business URL.
12 13 14 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 12 def business_url @business_url end |
#doing_business_as ⇒ Object
Doing business as (DBA) name.
14 15 16 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 14 def doing_business_as @doing_business_as end |
#product_description ⇒ Object
Description of the account’s product or service.
16 17 18 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 16 def product_description @product_description end |