Class: TencentCloud::Gpm::V20200820::CreateMatchResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gpm::V20200820::CreateMatchResponse
- Defined in:
- lib/v20200820/models.rb
Overview
CreateMatch返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(matchinfo = nil, requestid = nil) ⇒ CreateMatchResponse
constructor
A new instance of CreateMatchResponse.
Constructor Details
#initialize(matchinfo = nil, requestid = nil) ⇒ CreateMatchResponse
Returns a new instance of CreateMatchResponse.
167 168 169 170 |
# File 'lib/v20200820/models.rb', line 167 def initialize(matchinfo=nil, requestid=nil) @MatchInfo = matchinfo @RequestId = requestid end |
Instance Attribute Details
#MatchInfo ⇒ Object
165 166 167 |
# File 'lib/v20200820/models.rb', line 165 def MatchInfo @MatchInfo end |
#RequestId ⇒ Object
165 166 167 |
# File 'lib/v20200820/models.rb', line 165 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
172 173 174 175 176 177 178 |
# File 'lib/v20200820/models.rb', line 172 def deserialize(params) unless params['MatchInfo'].nil? @MatchInfo = MatchInfo.new @MatchInfo.deserialize(params['MatchInfo']) end @RequestId = params['RequestId'] end |