Class: TencentCloud::Csip::V20221121::DescribeExposuresResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Csip::V20221121::DescribeExposuresResponse
- Defined in:
- lib/v20221121/models.rb
Overview
DescribeExposures返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, exposelist = nil, requestid = nil) ⇒ DescribeExposuresResponse
constructor
A new instance of DescribeExposuresResponse.
Constructor Details
#initialize(totalcount = nil, exposelist = nil, requestid = nil) ⇒ DescribeExposuresResponse
Returns a new instance of DescribeExposuresResponse.
5876 5877 5878 5879 5880 |
# File 'lib/v20221121/models.rb', line 5876 def initialize(totalcount=nil, exposelist=nil, requestid=nil) @TotalCount = totalcount @ExposeList = exposelist @RequestId = requestid end |
Instance Attribute Details
#ExposeList ⇒ Object
5874 5875 5876 |
# File 'lib/v20221121/models.rb', line 5874 def ExposeList @ExposeList end |
#RequestId ⇒ Object
5874 5875 5876 |
# File 'lib/v20221121/models.rb', line 5874 def RequestId @RequestId end |
#TotalCount ⇒ Object
5874 5875 5876 |
# File 'lib/v20221121/models.rb', line 5874 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 |
# File 'lib/v20221121/models.rb', line 5882 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ExposeList'].nil? @ExposeList = [] params['ExposeList'].each do |i| exposesitem_tmp = ExposesItem.new exposesitem_tmp.deserialize(i) @ExposeList << exposesitem_tmp end end @RequestId = params['RequestId'] end |