Class: TencentCloud::Tse::V20201207::DescribeNacosServerInterfacesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tse::V20201207::DescribeNacosServerInterfacesResponse
- Defined in:
- lib/v20201207/models.rb
Overview
DescribeNacosServerInterfaces返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, content = nil, requestid = nil) ⇒ DescribeNacosServerInterfacesResponse
constructor
A new instance of DescribeNacosServerInterfacesResponse.
Constructor Details
#initialize(totalcount = nil, content = nil, requestid = nil) ⇒ DescribeNacosServerInterfacesResponse
Returns a new instance of DescribeNacosServerInterfacesResponse.
6645 6646 6647 6648 6649 |
# File 'lib/v20201207/models.rb', line 6645 def initialize(totalcount=nil, content=nil, requestid=nil) @TotalCount = totalcount @Content = content @RequestId = requestid end |
Instance Attribute Details
#Content ⇒ Object
6643 6644 6645 |
# File 'lib/v20201207/models.rb', line 6643 def Content @Content end |
#RequestId ⇒ Object
6643 6644 6645 |
# File 'lib/v20201207/models.rb', line 6643 def RequestId @RequestId end |
#TotalCount ⇒ Object
6643 6644 6645 |
# File 'lib/v20201207/models.rb', line 6643 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 |
# File 'lib/v20201207/models.rb', line 6651 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Content'].nil? @Content = [] params['Content'].each do |i| nacosserverinterface_tmp = NacosServerInterface.new nacosserverinterface_tmp.deserialize(i) @Content << nacosserverinterface_tmp end end @RequestId = params['RequestId'] end |