Class: TencentCloud::Tcaplusdb::V20190823::DescribeTableGroupTagsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::DescribeTableGroupTagsResponse
- Defined in:
- lib/v20190823/models.rb
Overview
DescribeTableGroupTags返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(rows = nil, totalcount = nil, requestid = nil) ⇒ DescribeTableGroupTagsResponse
constructor
A new instance of DescribeTableGroupTagsResponse.
Constructor Details
#initialize(rows = nil, totalcount = nil, requestid = nil) ⇒ DescribeTableGroupTagsResponse
Returns a new instance of DescribeTableGroupTagsResponse.
1868 1869 1870 1871 1872 |
# File 'lib/v20190823/models.rb', line 1868 def initialize(rows=nil, totalcount=nil, requestid=nil) @Rows = rows @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1866 1867 1868 |
# File 'lib/v20190823/models.rb', line 1866 def RequestId @RequestId end |
#Rows ⇒ Object
1866 1867 1868 |
# File 'lib/v20190823/models.rb', line 1866 def Rows @Rows end |
#TotalCount ⇒ Object
1866 1867 1868 |
# File 'lib/v20190823/models.rb', line 1866 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 |
# File 'lib/v20190823/models.rb', line 1874 def deserialize(params) unless params['Rows'].nil? @Rows = [] params['Rows'].each do |i| = TagsInfoOfTableGroup.new .deserialize(i) @Rows << end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |