Class: TencentCloud::Tat::V20201028::DescribeInvokersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tat::V20201028::DescribeInvokersResponse
- Defined in:
- lib/v20201028/models.rb
Overview
DescribeInvokers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, invokerset = nil, requestid = nil) ⇒ DescribeInvokersResponse
constructor
A new instance of DescribeInvokersResponse.
Constructor Details
#initialize(totalcount = nil, invokerset = nil, requestid = nil) ⇒ DescribeInvokersResponse
Returns a new instance of DescribeInvokersResponse.
1117 1118 1119 1120 1121 |
# File 'lib/v20201028/models.rb', line 1117 def initialize(totalcount=nil, invokerset=nil, requestid=nil) @TotalCount = totalcount @InvokerSet = invokerset @RequestId = requestid end |
Instance Attribute Details
#InvokerSet ⇒ Object
1115 1116 1117 |
# File 'lib/v20201028/models.rb', line 1115 def InvokerSet @InvokerSet end |
#RequestId ⇒ Object
1115 1116 1117 |
# File 'lib/v20201028/models.rb', line 1115 def RequestId @RequestId end |
#TotalCount ⇒ Object
1115 1116 1117 |
# File 'lib/v20201028/models.rb', line 1115 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 |
# File 'lib/v20201028/models.rb', line 1123 def deserialize(params) @TotalCount = params['TotalCount'] unless params['InvokerSet'].nil? @InvokerSet = [] params['InvokerSet'].each do |i| invoker_tmp = Invoker.new invoker_tmp.deserialize(i) @InvokerSet << invoker_tmp end end @RequestId = params['RequestId'] end |