Class: TencentCloud::Dbbrain::V20191016::DescribeTopSpaceSchemasResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20191016::DescribeTopSpaceSchemasResponse
- Defined in:
- lib/v20191016/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.
1488 1489 1490 1491 1492 |
# File 'lib/v20191016/models.rb', line 1488 def initialize(topspaceschemas=nil, =nil, requestid=nil) @TopSpaceSchemas = topspaceschemas @Timestamp = @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1486 1487 1488 |
# File 'lib/v20191016/models.rb', line 1486 def RequestId @RequestId end |
#Timestamp ⇒ Object
1486 1487 1488 |
# File 'lib/v20191016/models.rb', line 1486 def Timestamp @Timestamp end |
#TopSpaceSchemas ⇒ Object
1486 1487 1488 |
# File 'lib/v20191016/models.rb', line 1486 def TopSpaceSchemas @TopSpaceSchemas end |
Instance Method Details
#deserialize(params) ⇒ Object
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 |
# File 'lib/v20191016/models.rb', line 1494 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 |