Class: TencentCloud::Gpm::V20200820::DescribeMatchResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gpm::V20200820::DescribeMatchResponse
- Defined in:
- lib/v20200820/models.rb
Overview
DescribeMatch返回参数结构体
Instance Attribute Summary collapse
-
#MatchInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(matchinfo = nil, requestid = nil) ⇒ DescribeMatchResponse
constructor
A new instance of DescribeMatchResponse.
Constructor Details
#initialize(matchinfo = nil, requestid = nil) ⇒ DescribeMatchResponse
446 447 448 449 |
# File 'lib/v20200820/models.rb', line 446 def initialize(matchinfo=nil, requestid=nil) @MatchInfo = matchinfo @RequestId = requestid end |
Instance Attribute Details
#MatchInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
444 445 446 |
# File 'lib/v20200820/models.rb', line 444 def MatchInfo @MatchInfo end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
444 445 446 |
# File 'lib/v20200820/models.rb', line 444 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
451 452 453 454 455 456 457 |
# File 'lib/v20200820/models.rb', line 451 def deserialize(params) unless params['MatchInfo'].nil? @MatchInfo = MatchInfo.new @MatchInfo.deserialize(params['MatchInfo']) end @RequestId = params['RequestId'] end |