Class: TencentCloud::Tcaplusdb::V20190823::DescribeTableTagsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::DescribeTableTagsResponse
- Defined in:
- lib/v20190823/models.rb
Overview
DescribeTableTags返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeTableTagsResponse
constructor
A new instance of DescribeTableTagsResponse.
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
#RequestId ⇒ Object
1994 1995 1996 |
# File 'lib/v20190823/models.rb', line 1994 def RequestId @RequestId end |
#Rows ⇒ Object
1994 1995 1996 |
# File 'lib/v20190823/models.rb', line 1994 def Rows @Rows end |
#TotalCount ⇒ Object
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.new .deserialize(i) @Rows << end end @RequestId = params['RequestId'] end |