Class: TencentCloud::Wedata::V20210820::DescribeTableMetaResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeTableMetaResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeTableMeta返回参数结构体
Instance Attribute Summary collapse
-
#LifecycleInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TableMeta ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TagVoteSumList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tablemeta = nil, lifecycleinfo = nil, tagvotesumlist = nil, requestid = nil) ⇒ DescribeTableMetaResponse
constructor
A new instance of DescribeTableMetaResponse.
Constructor Details
#initialize(tablemeta = nil, lifecycleinfo = nil, tagvotesumlist = nil, requestid = nil) ⇒ DescribeTableMetaResponse
Returns a new instance of DescribeTableMetaResponse.
16483 16484 16485 16486 16487 16488 |
# File 'lib/v20210820/models.rb', line 16483 def initialize(=nil, lifecycleinfo=nil, tagvotesumlist=nil, requestid=nil) @TableMeta = @LifecycleInfo = lifecycleinfo @TagVoteSumList = tagvotesumlist @RequestId = requestid end |
Instance Attribute Details
#LifecycleInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
16481 16482 16483 |
# File 'lib/v20210820/models.rb', line 16481 def LifecycleInfo @LifecycleInfo end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
16481 16482 16483 |
# File 'lib/v20210820/models.rb', line 16481 def RequestId @RequestId end |
#TableMeta ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
16481 16482 16483 |
# File 'lib/v20210820/models.rb', line 16481 def TableMeta @TableMeta end |
#TagVoteSumList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
16481 16482 16483 |
# File 'lib/v20210820/models.rb', line 16481 def TagVoteSumList @TagVoteSumList end |
Instance Method Details
#deserialize(params) ⇒ Object
16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 |
# File 'lib/v20210820/models.rb', line 16490 def deserialize(params) unless params['TableMeta'].nil? @TableMeta = TableMeta.new @TableMeta.deserialize(params['TableMeta']) end unless params['LifecycleInfo'].nil? @LifecycleInfo = LifecycleInfo.new @LifecycleInfo.deserialize(params['LifecycleInfo']) end unless params['TagVoteSumList'].nil? @TagVoteSumList = TagVoteSum.new @TagVoteSumList.deserialize(params['TagVoteSumList']) end @RequestId = params['RequestId'] end |