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.
11051 11052 11053 11054 11055 |
# File 'lib/v20180228/models.rb', line 11051 def initialize(process=nil, total=nil, requestid=nil) @Process = process @Total = total @RequestId = requestid end |
Instance Attribute Details
#Process ⇒ Object
11049 11050 11051 |
# File 'lib/v20180228/models.rb', line 11049 def Process @Process end |
#RequestId ⇒ Object
11049 11050 11051 |
# File 'lib/v20180228/models.rb', line 11049 def RequestId @RequestId end |
#Total ⇒ Object
11049 11050 11051 |
# File 'lib/v20180228/models.rb', line 11049 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 |
# File 'lib/v20180228/models.rb', line 11057 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 |