Class: TencentCloud::Cpdp::V20190820::QueryAcctBindingResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cpdp::V20190820::QueryAcctBindingResponse
- Defined in:
- lib/v20190820/models.rb
Overview
QueryAcctBinding返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, bankcarditems = nil, requestid = nil) ⇒ QueryAcctBindingResponse
constructor
A new instance of QueryAcctBindingResponse.
Constructor Details
#initialize(totalcount = nil, bankcarditems = nil, requestid = nil) ⇒ QueryAcctBindingResponse
Returns a new instance of QueryAcctBindingResponse.
14480 14481 14482 14483 14484 |
# File 'lib/v20190820/models.rb', line 14480 def initialize(totalcount=nil, bankcarditems=nil, requestid=nil) @TotalCount = totalcount @BankCardItems = bankcarditems @RequestId = requestid end |
Instance Attribute Details
#BankCardItems ⇒ Object
14478 14479 14480 |
# File 'lib/v20190820/models.rb', line 14478 def BankCardItems @BankCardItems end |
#RequestId ⇒ Object
14478 14479 14480 |
# File 'lib/v20190820/models.rb', line 14478 def RequestId @RequestId end |
#TotalCount ⇒ Object
14478 14479 14480 |
# File 'lib/v20190820/models.rb', line 14478 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 |
# File 'lib/v20190820/models.rb', line 14486 def deserialize(params) @TotalCount = params['TotalCount'] unless params['BankCardItems'].nil? @BankCardItems = [] params['BankCardItems'].each do |i| bankcarditem_tmp = BankCardItem.new bankcarditem_tmp.deserialize(i) @BankCardItems << bankcarditem_tmp end end @RequestId = params['RequestId'] end |