Class: TencentCloud::Tat::V20201028::DescribeInvokerRecordsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tat::V20201028::DescribeInvokerRecordsResponse
- Defined in:
- lib/v20201028/models.rb
Overview
DescribeInvokerRecords返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, invokerrecordset = nil, requestid = nil) ⇒ DescribeInvokerRecordsResponse
constructor
A new instance of DescribeInvokerRecordsResponse.
Constructor Details
#initialize(totalcount = nil, invokerrecordset = nil, requestid = nil) ⇒ DescribeInvokerRecordsResponse
Returns a new instance of DescribeInvokerRecordsResponse.
1041 1042 1043 1044 1045 |
# File 'lib/v20201028/models.rb', line 1041 def initialize(totalcount=nil, invokerrecordset=nil, requestid=nil) @TotalCount = totalcount @InvokerRecordSet = invokerrecordset @RequestId = requestid end |
Instance Attribute Details
#InvokerRecordSet ⇒ Object
1039 1040 1041 |
# File 'lib/v20201028/models.rb', line 1039 def InvokerRecordSet @InvokerRecordSet end |
#RequestId ⇒ Object
1039 1040 1041 |
# File 'lib/v20201028/models.rb', line 1039 def RequestId @RequestId end |
#TotalCount ⇒ Object
1039 1040 1041 |
# File 'lib/v20201028/models.rb', line 1039 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 |
# File 'lib/v20201028/models.rb', line 1047 def deserialize(params) @TotalCount = params['TotalCount'] unless params['InvokerRecordSet'].nil? @InvokerRecordSet = [] params['InvokerRecordSet'].each do |i| invokerrecord_tmp = InvokerRecord.new invokerrecord_tmp.deserialize(i) @InvokerRecordSet << invokerrecord_tmp end end @RequestId = params['RequestId'] end |