Class: TencentCloud::Cwp::V20180228::DescribeAssetWebLocationPathListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeAssetWebLocationPathListResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeAssetWebLocationPathList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, paths = nil, requestid = nil) ⇒ DescribeAssetWebLocationPathListResponse
constructor
A new instance of DescribeAssetWebLocationPathListResponse.
Constructor Details
#initialize(total = nil, paths = nil, requestid = nil) ⇒ DescribeAssetWebLocationPathListResponse
Returns a new instance of DescribeAssetWebLocationPathListResponse.
10877 10878 10879 10880 10881 |
# File 'lib/v20180228/models.rb', line 10877 def initialize(total=nil, paths=nil, requestid=nil) @Total = total @Paths = paths @RequestId = requestid end |
Instance Attribute Details
#Paths ⇒ Object
10875 10876 10877 |
# File 'lib/v20180228/models.rb', line 10875 def Paths @Paths end |
#RequestId ⇒ Object
10875 10876 10877 |
# File 'lib/v20180228/models.rb', line 10875 def RequestId @RequestId end |
#Total ⇒ Object
10875 10876 10877 |
# File 'lib/v20180228/models.rb', line 10875 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 |
# File 'lib/v20180228/models.rb', line 10883 def deserialize(params) @Total = params['Total'] unless params['Paths'].nil? @Paths = [] params['Paths'].each do |i| assetweblocationpath_tmp = AssetWebLocationPath.new assetweblocationpath_tmp.deserialize(i) @Paths << assetweblocationpath_tmp end end @RequestId = params['RequestId'] end |