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.
15832 15833 15834 15835 15836 15837 |
# File 'lib/v20210820/models.rb', line 15832 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,表示取不到有效值。
15830 15831 15832 |
# File 'lib/v20210820/models.rb', line 15830 def LifecycleInfo @LifecycleInfo end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15830 15831 15832 |
# File 'lib/v20210820/models.rb', line 15830 def RequestId @RequestId end |
#TableMeta ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15830 15831 15832 |
# File 'lib/v20210820/models.rb', line 15830 def TableMeta @TableMeta end |
#TagVoteSumList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15830 15831 15832 |
# File 'lib/v20210820/models.rb', line 15830 def TagVoteSumList @TagVoteSumList end |
Instance Method Details
#deserialize(params) ⇒ Object
15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 |
# File 'lib/v20210820/models.rb', line 15839 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 |