Class: TencentCloud::Ecm::V20190719::DescribeHaVipsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ecm::V20190719::DescribeHaVipsResponse
- Defined in:
- lib/v20190719/models.rb
Overview
DescribeHaVips返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, havipset = nil, requestid = nil) ⇒ DescribeHaVipsResponse
constructor
A new instance of DescribeHaVipsResponse.
Constructor Details
#initialize(totalcount = nil, havipset = nil, requestid = nil) ⇒ DescribeHaVipsResponse
Returns a new instance of DescribeHaVipsResponse.
3029 3030 3031 3032 3033 |
# File 'lib/v20190719/models.rb', line 3029 def initialize(totalcount=nil, havipset=nil, requestid=nil) @TotalCount = totalcount @HaVipSet = havipset @RequestId = requestid end |
Instance Attribute Details
#HaVipSet ⇒ Object
3027 3028 3029 |
# File 'lib/v20190719/models.rb', line 3027 def HaVipSet @HaVipSet end |
#RequestId ⇒ Object
3027 3028 3029 |
# File 'lib/v20190719/models.rb', line 3027 def RequestId @RequestId end |
#TotalCount ⇒ Object
3027 3028 3029 |
# File 'lib/v20190719/models.rb', line 3027 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 |
# File 'lib/v20190719/models.rb', line 3035 def deserialize(params) @TotalCount = params['TotalCount'] unless params['HaVipSet'].nil? @HaVipSet = [] params['HaVipSet'].each do |i| havip_tmp = HaVip.new havip_tmp.deserialize(i) @HaVipSet << havip_tmp end end @RequestId = params['RequestId'] end |