Class: TencentCloud::Cpdp::V20190820::QueryAnchorContractInfoResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cpdp::V20190820::QueryAnchorContractInfoResponse
- Defined in:
- lib/v20190820/models.rb
Overview
QueryAnchorContractInfo返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(anchorcontractinfolist = nil, requestid = nil) ⇒ QueryAnchorContractInfoResponse
constructor
A new instance of QueryAnchorContractInfoResponse.
Constructor Details
#initialize(anchorcontractinfolist = nil, requestid = nil) ⇒ QueryAnchorContractInfoResponse
Returns a new instance of QueryAnchorContractInfoResponse.
14879 14880 14881 14882 |
# File 'lib/v20190820/models.rb', line 14879 def initialize(anchorcontractinfolist=nil, requestid=nil) @AnchorContractInfoList = anchorcontractinfolist @RequestId = requestid end |
Instance Attribute Details
#AnchorContractInfoList ⇒ Object
14877 14878 14879 |
# File 'lib/v20190820/models.rb', line 14877 def AnchorContractInfoList @AnchorContractInfoList end |
#RequestId ⇒ Object
14877 14878 14879 |
# File 'lib/v20190820/models.rb', line 14877 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 |
# File 'lib/v20190820/models.rb', line 14884 def deserialize(params) unless params['AnchorContractInfoList'].nil? @AnchorContractInfoList = [] params['AnchorContractInfoList'].each do |i| anchorcontractinfo_tmp = AnchorContractInfo.new anchorcontractinfo_tmp.deserialize(i) @AnchorContractInfoList << anchorcontractinfo_tmp end end @RequestId = params['RequestId'] end |