Class: TencentCloud::Cpdp::V20190820::PayeeAccountInfos

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190820/models.rb

Overview

账户信息列表

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(list = nil, count = nil) ⇒ PayeeAccountInfos

Returns a new instance of PayeeAccountInfos.



14011
14012
14013
14014
# File 'lib/v20190820/models.rb', line 14011

def initialize(list=nil, count=nil)
  @List = list
  @Count = count
end

Instance Attribute Details

#CountObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • List:

    列表

  • Count:

    总数



14009
14010
14011
# File 'lib/v20190820/models.rb', line 14009

def Count
  @Count
end

#ListObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • List:

    列表

  • Count:

    总数



14009
14010
14011
# File 'lib/v20190820/models.rb', line 14009

def List
  @List
end

Instance Method Details

#deserialize(params) ⇒ Object



14016
14017
14018
14019
14020
14021
14022
14023
14024
14025
14026
# File 'lib/v20190820/models.rb', line 14016

def deserialize(params)
  unless params['List'].nil?
    @List = []
    params['List'].each do |i|
      payeeaccountinforesult_tmp = PayeeAccountInfoResult.new
      payeeaccountinforesult_tmp.deserialize(i)
      @List << payeeaccountinforesult_tmp
    end
  end
  @Count = params['Count']
end