Class: TencentCloud::Gpm::V20200820::StartMatchingBackfillResponse

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

Overview

StartMatchingBackfill返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(matchticket = nil, requestid = nil) ⇒ StartMatchingBackfillResponse

Returns a new instance of StartMatchingBackfillResponse.



1585
1586
1587
1588
# File 'lib/v20200820/models.rb', line 1585

def initialize(matchticket=nil, requestid=nil)
  @MatchTicket = matchticket
  @RequestId = requestid
end

Instance Attribute Details

#MatchTicketObject

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

Parameters:

  • MatchTicket:

    匹配票据

  • RequestId:

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



1583
1584
1585
# File 'lib/v20200820/models.rb', line 1583

def MatchTicket
  @MatchTicket
end

#RequestIdObject

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

Parameters:

  • MatchTicket:

    匹配票据

  • RequestId:

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



1583
1584
1585
# File 'lib/v20200820/models.rb', line 1583

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



1590
1591
1592
1593
1594
1595
1596
# File 'lib/v20200820/models.rb', line 1590

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