Class: TencentCloud::Gpm::V20200820::ModifyMatchResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20200820/models.rb

Overview

ModifyMatch返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(matchinfo = nil, requestid = nil) ⇒ ModifyMatchResponse

Returns a new instance of ModifyMatchResponse.



1150
1151
1152
1153
# File 'lib/v20200820/models.rb', line 1150

def initialize(matchinfo=nil, requestid=nil)
  @MatchInfo = matchinfo
  @RequestId = requestid
end

Instance Attribute Details

#MatchInfoObject

Parameters:

  • MatchInfo:

    匹配信息

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



1148
1149
1150
# File 'lib/v20200820/models.rb', line 1148

def MatchInfo
  @MatchInfo
end

#RequestIdObject

Parameters:

  • MatchInfo:

    匹配信息

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



1148
1149
1150
# File 'lib/v20200820/models.rb', line 1148

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



1155
1156
1157
1158
1159
1160
1161
# File 'lib/v20200820/models.rb', line 1155

def deserialize(params)
  unless params['MatchInfo'].nil?
    @MatchInfo = MatchInfo.new
    @MatchInfo.deserialize(params['MatchInfo'])
  end
  @RequestId = params['RequestId']
end