Class: TencentCloud::Antiddos::V20200309::DescribeListPortAclListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Antiddos::V20200309::DescribeListPortAclListResponse
- Defined in:
- lib/v20200309/models.rb
Overview
DescribeListPortAclList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, acllist = nil, requestid = nil) ⇒ DescribeListPortAclListResponse
constructor
A new instance of DescribeListPortAclListResponse.
Constructor Details
#initialize(total = nil, acllist = nil, requestid = nil) ⇒ DescribeListPortAclListResponse
Returns a new instance of DescribeListPortAclListResponse.
5166 5167 5168 5169 5170 |
# File 'lib/v20200309/models.rb', line 5166 def initialize(total=nil, acllist=nil, requestid=nil) @Total = total @AclList = acllist @RequestId = requestid end |
Instance Attribute Details
#AclList ⇒ Object
5164 5165 5166 |
# File 'lib/v20200309/models.rb', line 5164 def AclList @AclList end |
#RequestId ⇒ Object
5164 5165 5166 |
# File 'lib/v20200309/models.rb', line 5164 def RequestId @RequestId end |
#Total ⇒ Object
5164 5165 5166 |
# File 'lib/v20200309/models.rb', line 5164 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 |
# File 'lib/v20200309/models.rb', line 5172 def deserialize(params) @Total = params['Total'] unless params['AclList'].nil? @AclList = [] params['AclList'].each do |i| aclconfigrelation_tmp = AclConfigRelation.new aclconfigrelation_tmp.deserialize(i) @AclList << aclconfigrelation_tmp end end @RequestId = params['RequestId'] end |