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.
4892 4893 4894 4895 4896 |
# File 'lib/v20210527/models.rb', line 4892 def initialize(topspaceschemas=nil, =nil, requestid=nil) @TopSpaceSchemas = topspaceschemas @Timestamp = @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4890 4891 4892 |
# File 'lib/v20210527/models.rb', line 4890 def RequestId @RequestId end |
#Timestamp ⇒ Object
4890 4891 4892 |
# File 'lib/v20210527/models.rb', line 4890 def Timestamp @Timestamp end |
#TopSpaceSchemas ⇒ Object
4890 4891 4892 |
# File 'lib/v20210527/models.rb', line 4890 def TopSpaceSchemas @TopSpaceSchemas end |
Instance Method Details
#deserialize(params) ⇒ Object
4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 |
# File 'lib/v20210527/models.rb', line 4898 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 |