Class: Stripe::V2::Core::AccountCreateParams::Configuration::Merchant::KonbiniPayments::Support
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Configuration::Merchant::KonbiniPayments::Support
- Defined in:
- lib/stripe/params/v2/core/account_create_params.rb
Defined Under Namespace
Classes: Hours
Instance Attribute Summary collapse
-
#email ⇒ Object
Support email address for Konbini payments.
-
#hours ⇒ Object
Support hours for Konbini payments.
-
#phone ⇒ Object
Support phone number for Konbini payments.
Instance Method Summary collapse
-
#initialize(email: nil, hours: nil, phone: nil) ⇒ Support
constructor
A new instance of Support.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, discriminator, discriminator_fields, field_encodings, new, #to_h
Constructor Details
#initialize(email: nil, hours: nil, phone: nil) ⇒ Support
Returns a new instance of Support.
826 827 828 829 830 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 826 def initialize(email: nil, hours: nil, phone: nil) @email = email @hours = hours @phone = phone end |
Instance Attribute Details
#email ⇒ Object
Support email address for Konbini payments.
820 821 822 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 820 def email @email end |
#hours ⇒ Object
Support hours for Konbini payments.
822 823 824 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 822 def hours @hours end |
#phone ⇒ Object
Support phone number for Konbini payments.
824 825 826 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 824 def phone @phone end |