Class: TencentCloud::Ecm::V20190719::DescribePackingQuotaGroupResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ecm::V20190719::DescribePackingQuotaGroupResponse
- Defined in:
- lib/v20190719/models.rb
Overview
DescribePackingQuotaGroup返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(packingquotaset = nil, requestid = nil) ⇒ DescribePackingQuotaGroupResponse
constructor
A new instance of DescribePackingQuotaGroupResponse.
Constructor Details
#initialize(packingquotaset = nil, requestid = nil) ⇒ DescribePackingQuotaGroupResponse
Returns a new instance of DescribePackingQuotaGroupResponse.
3928 3929 3930 3931 |
# File 'lib/v20190719/models.rb', line 3928 def initialize(packingquotaset=nil, requestid=nil) @PackingQuotaSet = packingquotaset @RequestId = requestid end |
Instance Attribute Details
#PackingQuotaSet ⇒ Object
3926 3927 3928 |
# File 'lib/v20190719/models.rb', line 3926 def PackingQuotaSet @PackingQuotaSet end |
#RequestId ⇒ Object
3926 3927 3928 |
# File 'lib/v20190719/models.rb', line 3926 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 |
# File 'lib/v20190719/models.rb', line 3933 def deserialize(params) unless params['PackingQuotaSet'].nil? @PackingQuotaSet = [] params['PackingQuotaSet'].each do |i| packingquotagroup_tmp = PackingQuotaGroup.new packingquotagroup_tmp.deserialize(i) @PackingQuotaSet << packingquotagroup_tmp end end @RequestId = params['RequestId'] end |