Class: TencentCloud::Wedata::V20210820::DescribeDataServicePublishedApiListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeDataServicePublishedApiListResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeDataServicePublishedApiList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, dataset = nil, requestid = nil) ⇒ DescribeDataServicePublishedApiListResponse
constructor
A new instance of DescribeDataServicePublishedApiListResponse.
Constructor Details
#initialize(totalcount = nil, dataset = nil, requestid = nil) ⇒ DescribeDataServicePublishedApiListResponse
Returns a new instance of DescribeDataServicePublishedApiListResponse.
9898 9899 9900 9901 9902 |
# File 'lib/v20210820/models.rb', line 9898 def initialize(totalcount=nil, dataset=nil, requestid=nil) @TotalCount = totalcount @DataSet = dataset @RequestId = requestid end |
Instance Attribute Details
#DataSet ⇒ Object
9896 9897 9898 |
# File 'lib/v20210820/models.rb', line 9896 def DataSet @DataSet end |
#RequestId ⇒ Object
9896 9897 9898 |
# File 'lib/v20210820/models.rb', line 9896 def RequestId @RequestId end |
#TotalCount ⇒ Object
9896 9897 9898 |
# File 'lib/v20210820/models.rb', line 9896 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 |
# File 'lib/v20210820/models.rb', line 9904 def deserialize(params) @TotalCount = params['TotalCount'] unless params['DataSet'].nil? @DataSet = [] params['DataSet'].each do |i| describedataservicepublishedapilistresp_tmp = DescribeDataServicePublishedApiListResp.new describedataservicepublishedapilistresp_tmp.deserialize(i) @DataSet << describedataservicepublishedapilistresp_tmp end end @RequestId = params['RequestId'] end |