Class: TencentCloud::Gpm::V20200820::DescribeMatchResponse

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

Overview

DescribeMatch返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#MatchInfoObject

注意:此字段可能返回 null,表示取不到有效值。



444
445
446
# File 'lib/v20200820/models.rb', line 444

def MatchInfo
  @MatchInfo
end

#RequestIdObject

注意:此字段可能返回 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