Class: TencentCloud::Waf::V20180125::DescribeAntiFakeUrlResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::DescribeAntiFakeUrlResponse
- Defined in:
- lib/v20180125/models.rb
Overview
DescribeAntiFakeUrl返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, list = nil, requestid = nil) ⇒ DescribeAntiFakeUrlResponse
constructor
A new instance of DescribeAntiFakeUrlResponse.
Constructor Details
#initialize(total = nil, list = nil, requestid = nil) ⇒ DescribeAntiFakeUrlResponse
Returns a new instance of DescribeAntiFakeUrlResponse.
3485 3486 3487 3488 3489 |
# File 'lib/v20180125/models.rb', line 3485 def initialize(total=nil, list=nil, requestid=nil) @Total = total @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
3483 3484 3485 |
# File 'lib/v20180125/models.rb', line 3483 def List @List end |
#RequestId ⇒ Object
3483 3484 3485 |
# File 'lib/v20180125/models.rb', line 3483 def RequestId @RequestId end |
#Total ⇒ Object
3483 3484 3485 |
# File 'lib/v20180125/models.rb', line 3483 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 |
# File 'lib/v20180125/models.rb', line 3491 def deserialize(params) @Total = params['Total'] unless params['List'].nil? @List = [] params['List'].each do |i| cacheurlitem_tmp = CacheUrlItem.new cacheurlitem_tmp.deserialize(i) @List << cacheurlitem_tmp end end @RequestId = params['RequestId'] end |