Class: TencentCloud::Bma::V20221115::DescribeBPFakeAPPListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bma::V20221115::DescribeBPFakeAPPListResponse
- Defined in:
- lib/v20221115/models.rb
Overview
DescribeBPFakeAPPList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fakeapplist = nil, totalcount = nil, requestid = nil) ⇒ DescribeBPFakeAPPListResponse
constructor
A new instance of DescribeBPFakeAPPListResponse.
Constructor Details
#initialize(fakeapplist = nil, totalcount = nil, requestid = nil) ⇒ DescribeBPFakeAPPListResponse
Returns a new instance of DescribeBPFakeAPPListResponse.
526 527 528 529 530 |
# File 'lib/v20221115/models.rb', line 526 def initialize(fakeapplist=nil, totalcount=nil, requestid=nil) @FakeAPPList = fakeapplist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#FakeAPPList ⇒ Object
524 525 526 |
# File 'lib/v20221115/models.rb', line 524 def FakeAPPList @FakeAPPList end |
#RequestId ⇒ Object
524 525 526 |
# File 'lib/v20221115/models.rb', line 524 def RequestId @RequestId end |
#TotalCount ⇒ Object
524 525 526 |
# File 'lib/v20221115/models.rb', line 524 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
532 533 534 535 536 537 538 539 540 541 542 543 |
# File 'lib/v20221115/models.rb', line 532 def deserialize(params) unless params['FakeAPPList'].nil? @FakeAPPList = [] params['FakeAPPList'].each do |i| fakeappdata_tmp = FakeAPPData.new fakeappdata_tmp.deserialize(i) @FakeAPPList << fakeappdata_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |