Class: TencentCloud::Tcaplusdb::V20190823::TagsInfoOfTable
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::TagsInfoOfTable
- Defined in:
- lib/v20190823/models.rb
Overview
表格标签信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tableinstanceid = nil, tablename = nil, tablegroupid = nil, tags = nil, error = nil) ⇒ TagsInfoOfTable
constructor
A new instance of TagsInfoOfTable.
Constructor Details
#initialize(tableinstanceid = nil, tablename = nil, tablegroupid = nil, tags = nil, error = nil) ⇒ TagsInfoOfTable
Returns a new instance of TagsInfoOfTable.
4587 4588 4589 4590 4591 4592 4593 |
# File 'lib/v20190823/models.rb', line 4587 def initialize(tableinstanceid=nil, tablename=nil, tablegroupid=nil, =nil, error=nil) @TableInstanceId = tableinstanceid @TableName = tablename @TableGroupId = tablegroupid @Tags = @Error = error end |
Instance Attribute Details
#Error ⇒ Object
4585 4586 4587 |
# File 'lib/v20190823/models.rb', line 4585 def Error @Error end |
#TableGroupId ⇒ Object
4585 4586 4587 |
# File 'lib/v20190823/models.rb', line 4585 def TableGroupId @TableGroupId end |
#TableInstanceId ⇒ Object
4585 4586 4587 |
# File 'lib/v20190823/models.rb', line 4585 def TableInstanceId @TableInstanceId end |
#TableName ⇒ Object
4585 4586 4587 |
# File 'lib/v20190823/models.rb', line 4585 def TableName @TableName end |
#Tags ⇒ Object
4585 4586 4587 |
# File 'lib/v20190823/models.rb', line 4585 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 |
# File 'lib/v20190823/models.rb', line 4595 def deserialize(params) @TableInstanceId = params['TableInstanceId'] @TableName = params['TableName'] @TableGroupId = params['TableGroupId'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| taginfounit_tmp = TagInfoUnit.new taginfounit_tmp.deserialize(i) @Tags << taginfounit_tmp end end unless params['Error'].nil? @Error = ErrorInfo.new @Error.deserialize(params['Error']) end end |