Class: TencentCloud::Tdid::V20210519::GetOverSummaryResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tdid::V20210519::GetOverSummaryResponse
- Defined in:
- lib/v20210519/models.rb
Overview
GetOverSummary返回参数结构体
Instance Attribute Summary collapse
- #AppCnt ⇒ Object
- #AppCounter ⇒ Object
- #ChainCnt ⇒ Object
- #DeployCnt ⇒ Object
- #RequestId ⇒ Object
- #UserCounter ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(appcounter = nil, usercounter = nil, appcnt = nil, deploycnt = nil, chaincnt = nil, requestid = nil) ⇒ GetOverSummaryResponse
constructor
A new instance of GetOverSummaryResponse.
Constructor Details
#initialize(appcounter = nil, usercounter = nil, appcnt = nil, deploycnt = nil, chaincnt = nil, requestid = nil) ⇒ GetOverSummaryResponse
Returns a new instance of GetOverSummaryResponse.
577 578 579 580 581 582 583 584 |
# File 'lib/v20210519/models.rb', line 577 def initialize(appcounter=nil, usercounter=nil, appcnt=nil, deploycnt=nil, chaincnt=nil, requestid=nil) @AppCounter = appcounter @UserCounter = usercounter @AppCnt = appcnt @DeployCnt = deploycnt @ChainCnt = chaincnt @RequestId = requestid end |
Instance Attribute Details
#AppCnt ⇒ Object
575 576 577 |
# File 'lib/v20210519/models.rb', line 575 def AppCnt @AppCnt end |
#AppCounter ⇒ Object
575 576 577 |
# File 'lib/v20210519/models.rb', line 575 def AppCounter @AppCounter end |
#ChainCnt ⇒ Object
575 576 577 |
# File 'lib/v20210519/models.rb', line 575 def ChainCnt @ChainCnt end |
#DeployCnt ⇒ Object
575 576 577 |
# File 'lib/v20210519/models.rb', line 575 def DeployCnt @DeployCnt end |
#RequestId ⇒ Object
575 576 577 |
# File 'lib/v20210519/models.rb', line 575 def RequestId @RequestId end |
#UserCounter ⇒ Object
575 576 577 |
# File 'lib/v20210519/models.rb', line 575 def UserCounter @UserCounter end |
Instance Method Details
#deserialize(params) ⇒ Object
586 587 588 589 590 591 592 593 594 595 596 597 598 599 |
# File 'lib/v20210519/models.rb', line 586 def deserialize(params) unless params['AppCounter'].nil? @AppCounter = ResourceCounterData.new @AppCounter.deserialize(params['AppCounter']) end unless params['UserCounter'].nil? @UserCounter = ResourceCounterData.new @UserCounter.deserialize(params['UserCounter']) end @AppCnt = params['AppCnt'] @DeployCnt = params['DeployCnt'] @ChainCnt = params['ChainCnt'] @RequestId = params['RequestId'] end |