Class: TencentCloud::Dbbrain::V20210527::DescribeTopSpaceSchemasResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::DescribeTopSpaceSchemasResponse
- Defined in:
- lib/v20210527/models.rb
Overview
DescribeTopSpaceSchemas返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(topspaceschemas = nil, timestamp = nil, requestid = nil) ⇒ DescribeTopSpaceSchemasResponse
constructor
A new instance of DescribeTopSpaceSchemasResponse.
Constructor Details
#initialize(topspaceschemas = nil, timestamp = nil, requestid = nil) ⇒ DescribeTopSpaceSchemasResponse
Returns a new instance of DescribeTopSpaceSchemasResponse.
4828 4829 4830 4831 4832 |
# File 'lib/v20210527/models.rb', line 4828 def initialize(topspaceschemas=nil, =nil, requestid=nil) @TopSpaceSchemas = topspaceschemas @Timestamp = @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4826 4827 4828 |
# File 'lib/v20210527/models.rb', line 4826 def RequestId @RequestId end |
#Timestamp ⇒ Object
4826 4827 4828 |
# File 'lib/v20210527/models.rb', line 4826 def Timestamp @Timestamp end |
#TopSpaceSchemas ⇒ Object
4826 4827 4828 |
# File 'lib/v20210527/models.rb', line 4826 def TopSpaceSchemas @TopSpaceSchemas end |
Instance Method Details
#deserialize(params) ⇒ Object
4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 |
# File 'lib/v20210527/models.rb', line 4834 def deserialize(params) unless params['TopSpaceSchemas'].nil? @TopSpaceSchemas = [] params['TopSpaceSchemas'].each do |i| schemaspacedata_tmp = SchemaSpaceData.new schemaspacedata_tmp.deserialize(i) @TopSpaceSchemas << schemaspacedata_tmp end end @Timestamp = params['Timestamp'] @RequestId = params['RequestId'] end |