Class: Stripe::V2::Core::AccountCreateParams::Configuration::Merchant::KonbiniPayments::Support

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_create_params.rb

Defined Under Namespace

Classes: Hours

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(email: nil, hours: nil, phone: nil) ⇒ Support

Returns a new instance of Support.



813
814
815
816
817
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 813

def initialize(email: nil, hours: nil, phone: nil)
  @email = email
  @hours = hours
  @phone = phone
end

Instance Attribute Details

#emailObject

Support email address for Konbini payments.



807
808
809
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 807

def email
  @email
end

#hoursObject

Support hours for Konbini payments.



809
810
811
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 809

def hours
  @hours
end

#phoneObject

Support phone number for Konbini payments.



811
812
813
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 811

def phone
  @phone
end