Class: TencentCloud::Tcaplusdb::V20190823::DescribeTableGroupTagsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190823/models.rb

Overview

DescribeTableGroupTags返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#RequestIdObject

Parameters:

  • Rows:

    表格组标签信息列表

  • TotalCount:

    返回结果个数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



1866
1867
1868
# File 'lib/v20190823/models.rb', line 1866

def RequestId
  @RequestId
end

#RowsObject

Parameters:

  • Rows:

    表格组标签信息列表

  • TotalCount:

    返回结果个数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



1866
1867
1868
# File 'lib/v20190823/models.rb', line 1866

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • Rows:

    表格组标签信息列表

  • TotalCount:

    返回结果个数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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_tmp = TagsInfoOfTableGroup.new
      tagsinfooftablegroup_tmp.deserialize(i)
      @Rows << tagsinfooftablegroup_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end