Class: TencentCloud::Cpdp::V20190820::VerifyOpenBankAccountRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cpdp::V20190820::VerifyOpenBankAccountRequest
- Defined in:
- lib/v20190820/models.rb
Overview
VerifyOpenBankAccount请求参数结构体
Instance Attribute Summary collapse
-
#ChannelMerchantId ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_.
-
#ChannelName ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_.
-
#Environment ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_.
-
#NotifyUrl ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_.
-
#PayeeInfo ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(channelmerchantid = nil, channelname = nil, payeeinfo = nil, notifyurl = nil, environment = nil) ⇒ VerifyOpenBankAccountRequest
constructor
A new instance of VerifyOpenBankAccountRequest.
Constructor Details
#initialize(channelmerchantid = nil, channelname = nil, payeeinfo = nil, notifyurl = nil, environment = nil) ⇒ VerifyOpenBankAccountRequest
Returns a new instance of VerifyOpenBankAccountRequest.
27699 27700 27701 27702 27703 27704 27705 |
# File 'lib/v20190820/models.rb', line 27699 def initialize(channelmerchantid=nil, channelname=nil, payeeinfo=nil, notifyurl=nil, environment=nil) @ChannelMerchantId = channelmerchantid @ChannelName = channelname @PayeeInfo = payeeinfo @NotifyUrl = notifyurl @Environment = environment end |
Instance Attribute Details
#ChannelMerchantId ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_
27697 27698 27699 |
# File 'lib/v20190820/models.rb', line 27697 def ChannelMerchantId @ChannelMerchantId end |
#ChannelName ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_
27697 27698 27699 |
# File 'lib/v20190820/models.rb', line 27697 def ChannelName @ChannelName end |
#Environment ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_
27697 27698 27699 |
# File 'lib/v20190820/models.rb', line 27697 def Environment @Environment end |
#NotifyUrl ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_
27697 27698 27699 |
# File 'lib/v20190820/models.rb', line 27697 def NotifyUrl @NotifyUrl end |
#PayeeInfo ⇒ Object
__TENPAY__: 商企付 __release__:生产环境 __sandbox__:沙箱环境 _不填默认为生产环境_
27697 27698 27699 |
# File 'lib/v20190820/models.rb', line 27697 def PayeeInfo @PayeeInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
27707 27708 27709 27710 27711 27712 27713 27714 27715 27716 |
# File 'lib/v20190820/models.rb', line 27707 def deserialize(params) @ChannelMerchantId = params['ChannelMerchantId'] @ChannelName = params['ChannelName'] unless params['PayeeInfo'].nil? @PayeeInfo = OpenBankPayeeInfo.new @PayeeInfo.deserialize(params['PayeeInfo']) end @NotifyUrl = params['NotifyUrl'] @Environment = params['Environment'] end |