Class: Stripe::V2::Core::AccountCreateParams::Configuration::Merchant::ScriptStatementDescriptor
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Configuration::Merchant::ScriptStatementDescriptor
- Defined in:
- lib/stripe/params/v2/core/account_create_params.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#kana ⇒ Object
The Kana variation of statement_descriptor used for charges in Japan.
-
#kanji ⇒ Object
The Kanji variation of statement_descriptor used for charges in Japan.
Instance Method Summary collapse
-
#initialize(kana: nil, kanji: nil) ⇒ ScriptStatementDescriptor
constructor
A new instance of ScriptStatementDescriptor.
Methods inherited from RequestParams
Constructor Details
#initialize(kana: nil, kanji: nil) ⇒ ScriptStatementDescriptor
Returns a new instance of ScriptStatementDescriptor.
856 857 858 859 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 856 def initialize(kana: nil, kanji: nil) @kana = kana @kanji = kanji end |
Instance Attribute Details
#kana ⇒ Object
The Kana variation of statement_descriptor used for charges in Japan. Japanese statement descriptors have [special requirements](docs.stripe.com/get-started/account/statement-descriptors#set-japanese-statement-descriptors).
852 853 854 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 852 def kana @kana end |
#kanji ⇒ Object
The Kanji variation of statement_descriptor used for charges in Japan. Japanese statement descriptors have [special requirements](docs.stripe.com/get-started/account/statement-descriptors#set-japanese-statement-descriptors).
854 855 856 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 854 def kanji @kanji end |