Class: TencentCloud::Tcaplusdb::V20190823::DescribeTableTagsResponse

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

Overview

DescribeTableTags返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeTableTagsResponse

Returns a new instance of DescribeTableTagsResponse.



1996
1997
1998
1999
2000
# File 'lib/v20190823/models.rb', line 1996

def initialize(totalcount=nil, rows=nil, requestid=nil)
  @TotalCount = totalcount
  @Rows = rows
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • TotalCount:

    返回结果总数

  • Rows:

    表格标签信息列表

  • RequestId:

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



1994
1995
1996
# File 'lib/v20190823/models.rb', line 1994

def RequestId
  @RequestId
end

#RowsObject

Parameters:

  • TotalCount:

    返回结果总数

  • Rows:

    表格标签信息列表

  • RequestId:

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



1994
1995
1996
# File 'lib/v20190823/models.rb', line 1994

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • TotalCount:

    返回结果总数

  • Rows:

    表格标签信息列表

  • RequestId:

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



1994
1995
1996
# File 'lib/v20190823/models.rb', line 1994

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
# File 'lib/v20190823/models.rb', line 2002

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Rows'].nil?
    @Rows = []
    params['Rows'].each do |i|
      tagsinfooftable_tmp = TagsInfoOfTable.new
      tagsinfooftable_tmp.deserialize(i)
      @Rows << tagsinfooftable_tmp
    end
  end
  @RequestId = params['RequestId']
end