Class: TencentCloud::Ssl::V20191205::DescribeManagersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeManagersResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeManagers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(managers = nil, totalcount = nil, requestid = nil) ⇒ DescribeManagersResponse
constructor
A new instance of DescribeManagersResponse.
Constructor Details
#initialize(managers = nil, totalcount = nil, requestid = nil) ⇒ DescribeManagersResponse
Returns a new instance of DescribeManagersResponse.
5580 5581 5582 5583 5584 |
# File 'lib/v20191205/models.rb', line 5580 def initialize(managers=nil, totalcount=nil, requestid=nil) @Managers = managers @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Managers ⇒ Object
5578 5579 5580 |
# File 'lib/v20191205/models.rb', line 5578 def Managers @Managers end |
#RequestId ⇒ Object
5578 5579 5580 |
# File 'lib/v20191205/models.rb', line 5578 def RequestId @RequestId end |
#TotalCount ⇒ Object
5578 5579 5580 |
# File 'lib/v20191205/models.rb', line 5578 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 |
# File 'lib/v20191205/models.rb', line 5586 def deserialize(params) unless params['Managers'].nil? @Managers = [] params['Managers'].each do |i| managerinfo_tmp = ManagerInfo.new managerinfo_tmp.deserialize(i) @Managers << managerinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |