Class: KabustationClient::RequestSendOrder

Inherits:
Object
  • Object
show all
Defined in:
lib/kabustation_client/models/request_send_order.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ RequestSendOrder

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/kabustation_client/models/request_send_order.rb', line 132

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `KabustationClient::RequestSendOrder` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `KabustationClient::RequestSendOrder`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'password')
    self.password = attributes[:'password']
  else
    self.password = nil
  end

  if attributes.key?(:'symbol')
    self.symbol = attributes[:'symbol']
  else
    self.symbol = nil
  end

  if attributes.key?(:'exchange')
    self.exchange = attributes[:'exchange']
  else
    self.exchange = nil
  end

  if attributes.key?(:'security_type')
    self.security_type = attributes[:'security_type']
  else
    self.security_type = nil
  end

  if attributes.key?(:'side')
    self.side = attributes[:'side']
  else
    self.side = nil
  end

  if attributes.key?(:'cash_margin')
    self.cash_margin = attributes[:'cash_margin']
  else
    self.cash_margin = nil
  end

  if attributes.key?(:'margin_trade_type')
    self.margin_trade_type = attributes[:'margin_trade_type']
  end

  if attributes.key?(:'margin_premium_unit')
    self.margin_premium_unit = attributes[:'margin_premium_unit']
  end

  if attributes.key?(:'deliv_type')
    self.deliv_type = attributes[:'deliv_type']
  else
    self.deliv_type = nil
  end

  if attributes.key?(:'fund_type')
    self.fund_type = attributes[:'fund_type']
  end

  if attributes.key?(:'account_type')
    self. = attributes[:'account_type']
  else
    self. = nil
  end

  if attributes.key?(:'qty')
    self.qty = attributes[:'qty']
  else
    self.qty = nil
  end

  if attributes.key?(:'close_position_order')
    self.close_position_order = attributes[:'close_position_order']
  end

  if attributes.key?(:'close_positions')
    if (value = attributes[:'close_positions']).is_a?(Array)
      self.close_positions = value
    end
  end

  if attributes.key?(:'front_order_type')
    self.front_order_type = attributes[:'front_order_type']
  else
    self.front_order_type = nil
  end

  if attributes.key?(:'price')
    self.price = attributes[:'price']
  else
    self.price = nil
  end

  if attributes.key?(:'expire_day')
    self.expire_day = attributes[:'expire_day']
  else
    self.expire_day = nil
  end

  if attributes.key?(:'reverse_limit_order')
    self.reverse_limit_order = attributes[:'reverse_limit_order']
  end
end

Instance Attribute Details

#account_typeObject

口座種別 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>2</td> <td>一般</td> </tr> <tr> <td>4</td> <td>特定</td> </tr> <tr> <td>12</td> <td>法人</td> </tr> </tbody> </table>



49
50
51
# File 'lib/kabustation_client/models/request_send_order.rb', line 49

def 
  @account_type
end

#cash_marginObject

信用区分 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>現物</td> </tr> <tr> <td>2</td> <td>新規</td> </tr> <tr> <td>3</td> <td>返済</td> </tr> </tbody> </table>



34
35
36
# File 'lib/kabustation_client/models/request_send_order.rb', line 34

def cash_margin
  @cash_margin
end

#close_position_orderObject

決済順序
※信用返済の場合、必須。
※ClosePositionOrderとClosePositionsはどちらか一方のみ指定可能。
※ClosePositionOrderとClosePositionsを両方指定した場合、エラー。 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>0</td> <td>日付(古い順)、損益(高い順)</td> </tr> <tr> <td>1</td> <td>日付(古い順)、損益(低い順)</td> </tr> <tr> <td>2</td> <td>日付(新しい順)、損益(高い順)</td> </tr> <tr> <td>3</td> <td>日付(新しい順)、損益(低い順)</td> </tr> <tr> <td>4</td> <td>損益(高い順)、日付(古い順)</td> </tr> <tr> <td>5</td> <td>損益(高い順)、日付(新しい順)</td> </tr> <tr> <td>6</td> <td>損益(低い順)、日付(古い順)</td> </tr> <tr> <td>7</td> <td>損益(低い順)、日付(新しい順)</td> </tr> </tbody> </table>



55
56
57
# File 'lib/kabustation_client/models/request_send_order.rb', line 55

def close_position_order
  @close_position_order
end

#close_positionsObject

返済建玉指定
※信用返済の場合、必須。
※ClosePositionOrderとClosePositionsはどちらか一方のみ指定可能。
※ClosePositionOrderとClosePositionsを両方指定した場合、エラー。
※信用一括返済の場合、各建玉IDと返済したい数量を入力してください。
※建玉IDは「E」から始まる番号です。



58
59
60
# File 'lib/kabustation_client/models/request_send_order.rb', line 58

def close_positions
  @close_positions
end

#deliv_typeObject

受渡区分
※現物買は指定必須。
※現物売は「0(指定なし)」を設定
※信用新規は「0(指定なし)」を設定
※信用返済は指定必須
※auマネーコネクトが有効の場合にのみ、「3」を設定可能 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>0</td> <td>指定なし</td> </tr> <tr> <td>2</td> <td>お預り金</td> </tr> <tr> <td>3</td> <td>auマネーコネクト</td> </tr> </tbody> </table>



43
44
45
# File 'lib/kabustation_client/models/request_send_order.rb', line 43

def deliv_type
  @deliv_type
end

#exchangeObject

市場コード <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>東証</td> </tr> <tr> <td>3</td> <td>名証</td> </tr> <tr> <td>5</td> <td>福証</td> </tr> <tr> <td>6</td> <td>札証</td> </tr> </tbody> </table>



25
26
27
# File 'lib/kabustation_client/models/request_send_order.rb', line 25

def exchange
  @exchange
end

#expire_dayObject

注文有効期限
yyyyMMdd形式。
「0」を指定すると、kabuステーション上の発注画面の「本日」に対応する日付として扱います。
「本日」は直近の注文可能日となり、以下のように設定されます。
引けまでの間 : 当日
引け後 : 翌取引所営業日
休前日 : 休日明けの取引所営業日
※ 日替わりはkabuステーションが日付変更通知を受信したタイミングです。



67
68
69
# File 'lib/kabustation_client/models/request_send_order.rb', line 67

def expire_day
  @expire_day
end

#front_order_typeObject

執行条件 <table> <thead> <tr> <th>定義値</th> <th>説明</th> <th>”Price"の指定</th> </tr> </thead> <tbody> <tr> <td>10</td> <td>成行</td> <td>0</td> </tr> <tr> <td>13</td> <td>寄成(前場)</td> <td>0</td> </tr> <tr> <td>14</td> <td>寄成(後場)</td> <td>0</td> </tr> <tr> <td>15</td> <td>引成(前場)</td> <td>0</td> </tr> <tr> <td>16</td> <td>引成(後場)</td> <td>0</td> </tr> <tr> <td>17</td> <td>IOC成行</td> <td>0</td> </tr> <tr> <td>20</td> <td>指値</td> <td>発注したい金額</td> </tr> <tr> <td>21</td> <td>寄指(前場)</td> <td>発注したい金額</td> </tr> <tr> <td>22</td> <td>寄指(後場)</td> <td>発注したい金額</td> </tr> <tr> <td>23</td> <td>引指(前場)</td> <td>発注したい金額</td> </tr> <tr> <td>24</td> <td>引指(後場)</td> <td>発注したい金額</td> </tr> <tr> <td>25</td> <td>不成(前場)</td> <td>発注したい金額</td> </tr> <tr> <td>26</td> <td>不成(後場)</td> <td>発注したい金額</td> </tr> <tr> <td>27</td> <td>IOC指値</td> <td>発注したい金額</td> </tr> <tr> <td>30</td> <td>逆指値</td> <td>指定なし
※AfterHitPriceで指定ください</td> </tr> </tbody> </table>



61
62
63
# File 'lib/kabustation_client/models/request_send_order.rb', line 61

def front_order_type
  @front_order_type
end

#fund_typeObject

資産区分(預り区分)
※現物買は、指定必須。
※現物売は、「‘ ’」 半角スペース2つを指定必須。
※信用新規と信用返済は、「11」を指定するか、または指定なしでも可。指定しない場合は「11」が自動的にセットされます。 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>(半角スペース2つ)</td> <td>現物売の場合</td> </tr> <tr> <td>02</td> <td>保護</td> </tr> <tr> <td>AA</td> <td>信用代用</td> </tr> <tr> <td>11</td> <td>信用取引</td> </tr> </tbody> </table>



46
47
48
# File 'lib/kabustation_client/models/request_send_order.rb', line 46

def fund_type
  @fund_type
end

#margin_premium_unitObject

1株あたりのプレミアム料(円)
※プレミアム料の刻値は、プレミアム料取得APIのレスポンスにある"TickMarginPremium"にてご確認ください。
※入札受付中(19:30~20:30)プレミアム料入札可能銘柄の場合、「MarginPremiumUnit」は必須となります。
※入札受付中(19:30~20:30)のプレミアム料入札可能銘柄以外の場合は、「MarginPremiumUnit」の記載は無視されます。
※入札受付中以外の時間帯では、「MarginPremiumUnit」の記載は無視されます。



40
41
42
# File 'lib/kabustation_client/models/request_send_order.rb', line 40

def margin_premium_unit
  @margin_premium_unit
end

#margin_trade_typeObject

信用取引区分
※現物取引の場合は指定不要。
※信用取引の場合、必須。 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>制度信用</td> </tr> <tr> <td>2</td> <td>一般信用(長期)</td> </tr> <tr> <td>3</td> <td>一般信用(デイトレ)</td> </tr> </tbody> </table>



37
38
39
# File 'lib/kabustation_client/models/request_send_order.rb', line 37

def margin_trade_type
  @margin_trade_type
end

#passwordObject

注文パスワード



19
20
21
# File 'lib/kabustation_client/models/request_send_order.rb', line 19

def password
  @password
end

#priceObject

注文価格
※FrontOrderTypeで成行を指定した場合、0を指定する。
※詳細について、”FrontOrderType”をご確認ください。



64
65
66
# File 'lib/kabustation_client/models/request_send_order.rb', line 64

def price
  @price
end

#qtyObject

注文数量
※信用一括返済の場合、返済したい合計数量を入力してください。



52
53
54
# File 'lib/kabustation_client/models/request_send_order.rb', line 52

def qty
  @qty
end

#reverse_limit_orderObject

Returns the value of attribute reverse_limit_order.



69
70
71
# File 'lib/kabustation_client/models/request_send_order.rb', line 69

def reverse_limit_order
  @reverse_limit_order
end

#security_typeObject

商品種別 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>株式</td> </tr> </tbody> </table>



28
29
30
# File 'lib/kabustation_client/models/request_send_order.rb', line 28

def security_type
  @security_type
end

#sideObject

売買区分 <table> <thead> <tr> <th>定義値</th> <th>説明</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>売</td> </tr> <tr> <td>2</td> <td>買</td> </tr> </tbody> </table>



31
32
33
# File 'lib/kabustation_client/models/request_send_order.rb', line 31

def side
  @side
end

#symbolObject

銘柄コード



22
23
24
# File 'lib/kabustation_client/models/request_send_order.rb', line 22

def symbol
  @symbol
end

Class Method Details

._deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
# File 'lib/kabustation_client/models/request_send_order.rb', line 383

def self._deserialize(type, value)
  case type.to_sym
  when :Time
    Time.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :Boolean
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    # models (e.g. Pet) or oneOf
    klass = KabustationClient.const_get(type)
    klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



96
97
98
# File 'lib/kabustation_client/models/request_send_order.rb', line 96

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/kabustation_client/models/request_send_order.rb', line 72

def self.attribute_map
  {
    :'password' => :'Password',
    :'symbol' => :'Symbol',
    :'exchange' => :'Exchange',
    :'security_type' => :'SecurityType',
    :'side' => :'Side',
    :'cash_margin' => :'CashMargin',
    :'margin_trade_type' => :'MarginTradeType',
    :'margin_premium_unit' => :'MarginPremiumUnit',
    :'deliv_type' => :'DelivType',
    :'fund_type' => :'FundType',
    :'account_type' => :'AccountType',
    :'qty' => :'Qty',
    :'close_position_order' => :'ClosePositionOrder',
    :'close_positions' => :'ClosePositions',
    :'front_order_type' => :'FrontOrderType',
    :'price' => :'Price',
    :'expire_day' => :'ExpireDay',
    :'reverse_limit_order' => :'ReverseLimitOrder'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
# File 'lib/kabustation_client/models/request_send_order.rb', line 359

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



125
126
127
128
# File 'lib/kabustation_client/models/request_send_order.rb', line 125

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/kabustation_client/models/request_send_order.rb', line 101

def self.openapi_types
  {
    :'password' => :'String',
    :'symbol' => :'String',
    :'exchange' => :'Integer',
    :'security_type' => :'Integer',
    :'side' => :'String',
    :'cash_margin' => :'Integer',
    :'margin_trade_type' => :'Integer',
    :'margin_premium_unit' => :'Float',
    :'deliv_type' => :'Integer',
    :'fund_type' => :'String',
    :'account_type' => :'Integer',
    :'qty' => :'Integer',
    :'close_position_order' => :'Integer',
    :'close_positions' => :'Array<Positions>',
    :'front_order_type' => :'Integer',
    :'price' => :'Float',
    :'expire_day' => :'Integer',
    :'reverse_limit_order' => :'RequestSendOrderReverseLimitOrder'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'lib/kabustation_client/models/request_send_order.rb', line 321

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      password == o.password &&
      symbol == o.symbol &&
      exchange == o.exchange &&
      security_type == o.security_type &&
      side == o.side &&
      cash_margin == o.cash_margin &&
      margin_trade_type == o.margin_trade_type &&
      margin_premium_unit == o.margin_premium_unit &&
      deliv_type == o.deliv_type &&
      fund_type == o.fund_type &&
       == o. &&
      qty == o.qty &&
      close_position_order == o.close_position_order &&
      close_positions == o.close_positions &&
      front_order_type == o.front_order_type &&
      price == o.price &&
      expire_day == o.expire_day &&
      reverse_limit_order == o.reverse_limit_order
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



454
455
456
457
458
459
460
461
462
463
464
465
466
# File 'lib/kabustation_client/models/request_send_order.rb', line 454

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


346
347
348
# File 'lib/kabustation_client/models/request_send_order.rb', line 346

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



352
353
354
# File 'lib/kabustation_client/models/request_send_order.rb', line 352

def hash
  [password, symbol, exchange, security_type, side, cash_margin, margin_trade_type, margin_premium_unit, deliv_type, fund_type, , qty, close_position_order, close_positions, front_order_type, price, expire_day, reverse_limit_order].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'lib/kabustation_client/models/request_send_order.rb', line 246

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  if @password.nil?
    invalid_properties.push('invalid value for "password", password cannot be nil.')
  end

  if @symbol.nil?
    invalid_properties.push('invalid value for "symbol", symbol cannot be nil.')
  end

  if @exchange.nil?
    invalid_properties.push('invalid value for "exchange", exchange cannot be nil.')
  end

  if @security_type.nil?
    invalid_properties.push('invalid value for "security_type", security_type cannot be nil.')
  end

  if @side.nil?
    invalid_properties.push('invalid value for "side", side cannot be nil.')
  end

  if @cash_margin.nil?
    invalid_properties.push('invalid value for "cash_margin", cash_margin cannot be nil.')
  end

  if @deliv_type.nil?
    invalid_properties.push('invalid value for "deliv_type", deliv_type cannot be nil.')
  end

  if @account_type.nil?
    invalid_properties.push('invalid value for "account_type", account_type cannot be nil.')
  end

  if @qty.nil?
    invalid_properties.push('invalid value for "qty", qty cannot be nil.')
  end

  if @front_order_type.nil?
    invalid_properties.push('invalid value for "front_order_type", front_order_type cannot be nil.')
  end

  if @price.nil?
    invalid_properties.push('invalid value for "price", price cannot be nil.')
  end

  if @expire_day.nil?
    invalid_properties.push('invalid value for "expire_day", expire_day cannot be nil.')
  end

  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



430
431
432
# File 'lib/kabustation_client/models/request_send_order.rb', line 430

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



436
437
438
439
440
441
442
443
444
445
446
447
448
# File 'lib/kabustation_client/models/request_send_order.rb', line 436

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



424
425
426
# File 'lib/kabustation_client/models/request_send_order.rb', line 424

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# File 'lib/kabustation_client/models/request_send_order.rb', line 302

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if @password.nil?
  return false if @symbol.nil?
  return false if @exchange.nil?
  return false if @security_type.nil?
  return false if @side.nil?
  return false if @cash_margin.nil?
  return false if @deliv_type.nil?
  return false if @account_type.nil?
  return false if @qty.nil?
  return false if @front_order_type.nil?
  return false if @price.nil?
  return false if @expire_day.nil?
  true
end