6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/vaultoro/trading_api/cancel.rb', line 6
def execute!
ensure_attribute_has_value :order_id
return false if @errors.any?
response = Client.post("/cancel/#{@order_id}", {})
code = response.code rescue ""
case code
when '200'
hash = JSON.parse(response.body)
@status = hash['status'].upcase
@order_id = hash['data']['Order_ID']
unless @status == 'SUCCESS'
set_errors(response)
return false
end
return true
else
set_errors(response)
return false
end
end
|