Class: Stripe::AccountCreateParams::Settings::WechatPayPayments
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Settings::WechatPayPayments
- Defined in:
- lib/stripe/params/account_create_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.
2551 2552 2553 |
# File 'lib/stripe/params/account_create_params.rb', line 2551 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.
2549 2550 2551 |
# File 'lib/stripe/params/account_create_params.rb', line 2549 def mobile_web_domains @mobile_web_domains end |