Class: TencentCloud::Bma::V20221115::DescribeBPFakeURLsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bma::V20221115::DescribeBPFakeURLsResponse
- Defined in:
- lib/v20221115/models.rb
Overview
DescribeBPFakeURLs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fakeurls = nil, totalcount = nil, requestid = nil) ⇒ DescribeBPFakeURLsResponse
constructor
A new instance of DescribeBPFakeURLsResponse.
Constructor Details
#initialize(fakeurls = nil, totalcount = nil, requestid = nil) ⇒ DescribeBPFakeURLsResponse
Returns a new instance of DescribeBPFakeURLsResponse.
588 589 590 591 592 |
# File 'lib/v20221115/models.rb', line 588 def initialize(fakeurls=nil, totalcount=nil, requestid=nil) @FakeURLs = fakeurls @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#FakeURLs ⇒ Object
586 587 588 |
# File 'lib/v20221115/models.rb', line 586 def FakeURLs @FakeURLs end |
#RequestId ⇒ Object
586 587 588 |
# File 'lib/v20221115/models.rb', line 586 def RequestId @RequestId end |
#TotalCount ⇒ Object
586 587 588 |
# File 'lib/v20221115/models.rb', line 586 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
594 595 596 597 598 599 600 601 602 603 604 605 |
# File 'lib/v20221115/models.rb', line 594 def deserialize(params) unless params['FakeURLs'].nil? @FakeURLs = [] params['FakeURLs'].each do |i| fakeurldata_tmp = FakeURLData.new fakeurldata_tmp.deserialize(i) @FakeURLs << fakeurldata_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |