Class: TencentCloud::Cfs::V20190719::DescribeCfsFileSystemClientsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfs::V20190719::DescribeCfsFileSystemClientsResponse
- Defined in:
- lib/v20190719/models.rb
Overview
DescribeCfsFileSystemClients返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(clientlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeCfsFileSystemClientsResponse
constructor
A new instance of DescribeCfsFileSystemClientsResponse.
Constructor Details
#initialize(clientlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeCfsFileSystemClientsResponse
Returns a new instance of DescribeCfsFileSystemClientsResponse.
1803 1804 1805 1806 1807 |
# File 'lib/v20190719/models.rb', line 1803 def initialize(clientlist=nil, totalcount=nil, requestid=nil) @ClientList = clientlist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ClientList ⇒ Object
1801 1802 1803 |
# File 'lib/v20190719/models.rb', line 1801 def ClientList @ClientList end |
#RequestId ⇒ Object
1801 1802 1803 |
# File 'lib/v20190719/models.rb', line 1801 def RequestId @RequestId end |
#TotalCount ⇒ Object
1801 1802 1803 |
# File 'lib/v20190719/models.rb', line 1801 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 |
# File 'lib/v20190719/models.rb', line 1809 def deserialize(params) unless params['ClientList'].nil? @ClientList = [] params['ClientList'].each do |i| filesystemclient_tmp = FileSystemClient.new filesystemclient_tmp.deserialize(i) @ClientList << filesystemclient_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |