Class: TencentCloud::Gpm::V20200820::StartMatchingBackfillResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gpm::V20200820::StartMatchingBackfillResponse
- Defined in:
- lib/v20200820/models.rb
Overview
StartMatchingBackfill返回参数结构体
Instance Attribute Summary collapse
-
#MatchTicket ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(matchticket = nil, requestid = nil) ⇒ StartMatchingBackfillResponse
constructor
A new instance of StartMatchingBackfillResponse.
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
#MatchTicket ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1583 1584 1585 |
# File 'lib/v20200820/models.rb', line 1583 def MatchTicket @MatchTicket end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
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 |