Class: TencentCloud::Cme::V20191029::DescribeSharedSpaceResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::DescribeSharedSpaceResponse
- Defined in:
- lib/v20191029/models.rb
Overview
DescribeSharedSpace返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, authorizerset = nil, requestid = nil) ⇒ DescribeSharedSpaceResponse
constructor
A new instance of DescribeSharedSpaceResponse.
Constructor Details
#initialize(totalcount = nil, authorizerset = nil, requestid = nil) ⇒ DescribeSharedSpaceResponse
Returns a new instance of DescribeSharedSpaceResponse.
1735 1736 1737 1738 1739 |
# File 'lib/v20191029/models.rb', line 1735 def initialize(totalcount=nil, =nil, requestid=nil) @TotalCount = totalcount @AuthorizerSet = @RequestId = requestid end |
Instance Attribute Details
#AuthorizerSet ⇒ Object
1733 1734 1735 |
# File 'lib/v20191029/models.rb', line 1733 def AuthorizerSet @AuthorizerSet end |
#RequestId ⇒ Object
1733 1734 1735 |
# File 'lib/v20191029/models.rb', line 1733 def RequestId @RequestId end |
#TotalCount ⇒ Object
1733 1734 1735 |
# File 'lib/v20191029/models.rb', line 1733 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 |
# File 'lib/v20191029/models.rb', line 1741 def deserialize(params) @TotalCount = params['TotalCount'] unless params['AuthorizerSet'].nil? @AuthorizerSet = [] params['AuthorizerSet'].each do |i| = Authorizer.new .deserialize(i) @AuthorizerSet << end end @RequestId = params['RequestId'] end |