Class: Stripe::V2::Signals::AccountEvaluationCreateParams::AccountDetails::Data::Defaults::Profile
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Signals::AccountEvaluationCreateParams::AccountDetails::Data::Defaults::Profile
- Defined in:
- lib/stripe/params/v2/signals/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.
120 121 122 123 124 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 120 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.
114 115 116 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 114 def business_url @business_url end |
#doing_business_as ⇒ Object
Doing business as (DBA) name.
116 117 118 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 116 def doing_business_as @doing_business_as end |
#product_description ⇒ Object
Description of the account's product or service.
118 119 120 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 118 def product_description @product_description end |