Class: TencentCloud::Cpdp::V20190820::FreezeOrders
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cpdp::V20190820::FreezeOrders
- Defined in:
- lib/v20190820/models.rb
Overview
冻结订单列表
Instance Attribute Summary collapse
-
#Count ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, count = nil) ⇒ FreezeOrders
constructor
A new instance of FreezeOrders.
Constructor Details
#initialize(list = nil, count = nil) ⇒ FreezeOrders
Returns a new instance of FreezeOrders.
10993 10994 10995 10996 |
# File 'lib/v20190820/models.rb', line 10993 def initialize(list=nil, count=nil) @List = list @Count = count end |
Instance Attribute Details
#Count ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
10991 10992 10993 |
# File 'lib/v20190820/models.rb', line 10991 def Count @Count end |
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
10991 10992 10993 |
# File 'lib/v20190820/models.rb', line 10991 def List @List end |
Instance Method Details
#deserialize(params) ⇒ Object
10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 |
# File 'lib/v20190820/models.rb', line 10998 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| freezeorderresult_tmp = FreezeOrderResult.new freezeorderresult_tmp.deserialize(i) @List << freezeorderresult_tmp end end @Count = params['Count'] end |