Class: TencentCloud::Csip::V20221121::DescribeExposeAssetCategoryResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Csip::V20221121::DescribeExposeAssetCategoryResponse
- Defined in:
- lib/v20221121/models.rb
Overview
DescribeExposeAssetCategory返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(exposeassettypelist = nil, requestid = nil) ⇒ DescribeExposeAssetCategoryResponse
constructor
A new instance of DescribeExposeAssetCategoryResponse.
Constructor Details
#initialize(exposeassettypelist = nil, requestid = nil) ⇒ DescribeExposeAssetCategoryResponse
Returns a new instance of DescribeExposeAssetCategoryResponse.
5752 5753 5754 5755 |
# File 'lib/v20221121/models.rb', line 5752 def initialize(exposeassettypelist=nil, requestid=nil) @ExposeAssetTypeList = exposeassettypelist @RequestId = requestid end |
Instance Attribute Details
#ExposeAssetTypeList ⇒ Object
5750 5751 5752 |
# File 'lib/v20221121/models.rb', line 5750 def ExposeAssetTypeList @ExposeAssetTypeList end |
#RequestId ⇒ Object
5750 5751 5752 |
# File 'lib/v20221121/models.rb', line 5750 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 |
# File 'lib/v20221121/models.rb', line 5757 def deserialize(params) unless params['ExposeAssetTypeList'].nil? @ExposeAssetTypeList = [] params['ExposeAssetTypeList'].each do |i| exposeassettypeitem_tmp = ExposeAssetTypeItem.new exposeassettypeitem_tmp.deserialize(i) @ExposeAssetTypeList << exposeassettypeitem_tmp end end @RequestId = params['RequestId'] end |