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

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.



836
837
838
839
840
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 836

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.



830
831
832
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 830

def email
  @email
end

#hoursObject

Support hours for Konbini payments.



832
833
834
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 832

def hours
  @hours
end

#phoneObject

Support phone number for Konbini payments.



834
835
836
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 834

def phone
  @phone
end