Class: Stripe::AccountUpdateParams::Settings::WechatPayPayments
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountUpdateParams::Settings::WechatPayPayments
- Defined in:
- lib/stripe/params/account_update_params.rb
Instance Attribute Summary collapse
-
#mobile_web_domains ⇒ Object
The domains of the user's mobile web checkout pages for WeChat Pay payments.
Instance Method Summary collapse
-
#initialize(mobile_web_domains: nil) ⇒ WechatPayPayments
constructor
A new instance of WechatPayPayments.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(mobile_web_domains: nil) ⇒ WechatPayPayments
Returns a new instance of WechatPayPayments.
2506 2507 2508 |
# File 'lib/stripe/params/account_update_params.rb', line 2506 def initialize(mobile_web_domains: nil) @mobile_web_domains = mobile_web_domains end |
Instance Attribute Details
#mobile_web_domains ⇒ Object
The domains of the user's mobile web checkout pages for WeChat Pay payments. At most 4 domains are allowed.
2504 2505 2506 |
# File 'lib/stripe/params/account_update_params.rb', line 2504 def mobile_web_domains @mobile_web_domains end |