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, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of PaypayPayments.



2330
2331
2332
2333
2334
# File 'lib/stripe/params/account_update_params.rb', line 2330

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.



2324
2325
2326
# File 'lib/stripe/params/account_update_params.rb', line 2324

def additional_files
  @additional_files
end

#goods_typeObject

The type of goods your business sells. Use ‘digital_content` if you sell digital content. Use `other` for all other types of goods or services.



2326
2327
2328
# File 'lib/stripe/params/account_update_params.rb', line 2326

def goods_type
  @goods_type
end

#siteObject

Details regarding your business’s website.



2328
2329
2330
# File 'lib/stripe/params/account_update_params.rb', line 2328

def site
  @site
end