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

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_update_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.



823
824
825
826
827
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 823

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.



817
818
819
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 817

def email
  @email
end

#hoursObject

Support hours for Konbini payments.



819
820
821
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 819

def hours
  @hours
end

#phoneObject

Support phone number for Konbini payments.



821
822
823
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 821

def phone
  @phone
end