Class: TencentCloud::Ssl::V20191205::DescribeHostTeoInstanceListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostTeoInstanceListResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostTeoInstanceList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeHostTeoInstanceListResponse
constructor
A new instance of DescribeHostTeoInstanceListResponse.
Constructor Details
#initialize(instancelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeHostTeoInstanceListResponse
Returns a new instance of DescribeHostTeoInstanceListResponse.
4882 4883 4884 4885 4886 |
# File 'lib/v20191205/models.rb', line 4882 def initialize(instancelist=nil, totalcount=nil, requestid=nil) @InstanceList = instancelist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#InstanceList ⇒ Object
4880 4881 4882 |
# File 'lib/v20191205/models.rb', line 4880 def InstanceList @InstanceList end |
#RequestId ⇒ Object
4880 4881 4882 |
# File 'lib/v20191205/models.rb', line 4880 def RequestId @RequestId end |
#TotalCount ⇒ Object
4880 4881 4882 |
# File 'lib/v20191205/models.rb', line 4880 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 |
# File 'lib/v20191205/models.rb', line 4888 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| teoinstancedetail_tmp = TeoInstanceDetail.new teoinstancedetail_tmp.deserialize(i) @InstanceList << teoinstancedetail_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |