Class: TencentCloud::Ssa::V20180608::DescribeComplianceAssetListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssa::V20180608::DescribeComplianceAssetListResponse
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeComplianceAssetList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(checkassetslist = nil, total = nil, requestid = nil) ⇒ DescribeComplianceAssetListResponse
constructor
A new instance of DescribeComplianceAssetListResponse.
Constructor Details
#initialize(checkassetslist = nil, total = nil, requestid = nil) ⇒ DescribeComplianceAssetListResponse
Returns a new instance of DescribeComplianceAssetListResponse.
1876 1877 1878 1879 1880 |
# File 'lib/v20180608/models.rb', line 1876 def initialize(checkassetslist=nil, total=nil, requestid=nil) @CheckAssetsList = checkassetslist @Total = total @RequestId = requestid end |
Instance Attribute Details
#CheckAssetsList ⇒ Object
1874 1875 1876 |
# File 'lib/v20180608/models.rb', line 1874 def CheckAssetsList @CheckAssetsList end |
#RequestId ⇒ Object
1874 1875 1876 |
# File 'lib/v20180608/models.rb', line 1874 def RequestId @RequestId end |
#Total ⇒ Object
1874 1875 1876 |
# File 'lib/v20180608/models.rb', line 1874 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 |
# File 'lib/v20180608/models.rb', line 1882 def deserialize(params) unless params['CheckAssetsList'].nil? @CheckAssetsList = [] params['CheckAssetsList'].each do |i| checkassetitem_tmp = CheckAssetItem.new checkassetitem_tmp.deserialize(i) @CheckAssetsList << checkassetitem_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |