Class: TencentCloud::Lke::V20231130::ListUnsatisfiedReplyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lke::V20231130::ListUnsatisfiedReplyResponse
- Defined in:
- lib/v20231130/models.rb
Overview
ListUnsatisfiedReply返回参数结构体
Instance Attribute Summary collapse
-
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, list = nil, requestid = nil) ⇒ ListUnsatisfiedReplyResponse
constructor
A new instance of ListUnsatisfiedReplyResponse.
Constructor Details
#initialize(total = nil, list = nil, requestid = nil) ⇒ ListUnsatisfiedReplyResponse
Returns a new instance of ListUnsatisfiedReplyResponse.
8811 8812 8813 8814 8815 |
# File 'lib/v20231130/models.rb', line 8811 def initialize(total=nil, list=nil, requestid=nil) @Total = total @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8809 8810 8811 |
# File 'lib/v20231130/models.rb', line 8809 def List @List end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8809 8810 8811 |
# File 'lib/v20231130/models.rb', line 8809 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8809 8810 8811 |
# File 'lib/v20231130/models.rb', line 8809 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 |
# File 'lib/v20231130/models.rb', line 8817 def deserialize(params) @Total = params['Total'] unless params['List'].nil? @List = [] params['List'].each do |i| unsatisfiedreply_tmp = UnsatisfiedReply.new unsatisfiedreply_tmp.deserialize(i) @List << unsatisfiedreply_tmp end end @RequestId = params['RequestId'] end |