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.
10856 10857 10858 10859 10860 |
# File 'lib/v20180228/models.rb', line 10856 def initialize(total=nil, paths=nil, requestid=nil) @Total = total @Paths = paths @RequestId = requestid end |
Instance Attribute Details
#Paths ⇒ Object
10854 10855 10856 |
# File 'lib/v20180228/models.rb', line 10854 def Paths @Paths end |
#RequestId ⇒ Object
10854 10855 10856 |
# File 'lib/v20180228/models.rb', line 10854 def RequestId @RequestId end |
#Total ⇒ Object
10854 10855 10856 |
# File 'lib/v20180228/models.rb', line 10854 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 |
# File 'lib/v20180228/models.rb', line 10862 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 |