Class: Stripe::AccountUpdateParams::Settings::PaypayPayments

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_update_params.rb

Defined Under Namespace

Classes: Site

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(additional_files: nil, goods_type: nil, site: nil) ⇒ PaypayPayments

Returns a new instance of PaypayPayments.



2242
2243
2244
2245
2246
# File 'lib/stripe/params/account_update_params.rb', line 2242

def initialize(additional_files: nil, goods_type: nil, site: nil)
  @additional_files = additional_files
  @goods_type = goods_type
  @site = site
end

Instance Attribute Details

#additional_filesObject

Additional files that are required to support the onboarding process of your business.



2236
2237
2238
# File 'lib/stripe/params/account_update_params.rb', line 2236

def additional_files
  @additional_files
end

#goods_typeObject

Whether your business sells digital content or not.



2238
2239
2240
# File 'lib/stripe/params/account_update_params.rb', line 2238

def goods_type
  @goods_type
end

#siteObject

Details regarding your business’s website.



2240
2241
2242
# File 'lib/stripe/params/account_update_params.rb', line 2240

def site
  @site
end