Class: TencentCloud::Gpm::V20200820::DescribeMatchingProgressResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gpm::V20200820::DescribeMatchingProgressResponse
- Defined in:
- lib/v20200820/models.rb
Overview
DescribeMatchingProgress返回参数结构体
Instance Attribute Summary collapse
-
#ErrCode ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#MatchTickets ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(matchtickets = nil, errcode = nil, requestid = nil) ⇒ DescribeMatchingProgressResponse
constructor
A new instance of DescribeMatchingProgressResponse.
Constructor Details
#initialize(matchtickets = nil, errcode = nil, requestid = nil) ⇒ DescribeMatchingProgressResponse
Returns a new instance of DescribeMatchingProgressResponse.
583 584 585 586 587 |
# File 'lib/v20200820/models.rb', line 583 def initialize(matchtickets=nil, errcode=nil, requestid=nil) @MatchTickets = matchtickets @ErrCode = errcode @RequestId = requestid end |
Instance Attribute Details
#ErrCode ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
581 582 583 |
# File 'lib/v20200820/models.rb', line 581 def ErrCode @ErrCode end |
#MatchTickets ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
581 582 583 |
# File 'lib/v20200820/models.rb', line 581 def MatchTickets @MatchTickets end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
581 582 583 |
# File 'lib/v20200820/models.rb', line 581 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
589 590 591 592 593 594 595 596 597 598 599 600 |
# File 'lib/v20200820/models.rb', line 589 def deserialize(params) unless params['MatchTickets'].nil? @MatchTickets = [] params['MatchTickets'].each do |i| matchticket_tmp = MatchTicket.new matchticket_tmp.deserialize(i) @MatchTickets << matchticket_tmp end end @ErrCode = params['ErrCode'] @RequestId = params['RequestId'] end |