Class: TencentCloud::Apcas::V20201127::QueryGeneralStatResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apcas::V20201127::QueryGeneralStatResponse
- Defined in:
- lib/v20201127/models.rb
Overview
QueryGeneralStat返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(generalstat = nil, requestid = nil) ⇒ QueryGeneralStatResponse
constructor
A new instance of QueryGeneralStatResponse.
Constructor Details
#initialize(generalstat = nil, requestid = nil) ⇒ QueryGeneralStatResponse
Returns a new instance of QueryGeneralStatResponse.
478 479 480 481 |
# File 'lib/v20201127/models.rb', line 478 def initialize(generalstat=nil, requestid=nil) @GeneralStat = generalstat @RequestId = requestid end |
Instance Attribute Details
#GeneralStat ⇒ Object
476 477 478 |
# File 'lib/v20201127/models.rb', line 476 def GeneralStat @GeneralStat end |
#RequestId ⇒ Object
476 477 478 |
# File 'lib/v20201127/models.rb', line 476 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
483 484 485 486 487 488 489 |
# File 'lib/v20201127/models.rb', line 483 def deserialize(params) unless params['GeneralStat'].nil? @GeneralStat = GeneralStat.new @GeneralStat.deserialize(params['GeneralStat']) end @RequestId = params['RequestId'] end |