Class: TencentCloud::Cwp::V20180228::DescribeAssetWebServiceProcessListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeAssetWebServiceProcessListResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeAssetWebServiceProcessList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(process = nil, total = nil, requestid = nil) ⇒ DescribeAssetWebServiceProcessListResponse
constructor
A new instance of DescribeAssetWebServiceProcessListResponse.
Constructor Details
#initialize(process = nil, total = nil, requestid = nil) ⇒ DescribeAssetWebServiceProcessListResponse
Returns a new instance of DescribeAssetWebServiceProcessListResponse.
11072 11073 11074 11075 11076 |
# File 'lib/v20180228/models.rb', line 11072 def initialize(process=nil, total=nil, requestid=nil) @Process = process @Total = total @RequestId = requestid end |
Instance Attribute Details
#Process ⇒ Object
11070 11071 11072 |
# File 'lib/v20180228/models.rb', line 11070 def Process @Process end |
#RequestId ⇒ Object
11070 11071 11072 |
# File 'lib/v20180228/models.rb', line 11070 def RequestId @RequestId end |
#Total ⇒ Object
11070 11071 11072 |
# File 'lib/v20180228/models.rb', line 11070 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 |
# File 'lib/v20180228/models.rb', line 11078 def deserialize(params) unless params['Process'].nil? @Process = [] params['Process'].each do |i| assetappprocessinfo_tmp = AssetAppProcessInfo.new assetappprocessinfo_tmp.deserialize(i) @Process << assetappprocessinfo_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |