-
Notifications
You must be signed in to change notification settings - Fork 3
/
private.go
52 lines (44 loc) · 1.22 KB
/
private.go
1
2
3
4
5
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package goquadriga
type BaseAuth struct {
ApiKey string `json:"key"`
Signature string `json:"signature"`
Nonce string `json:"nonce"`
}
type AccountBalance struct {
CadBalance string `json:"cad_balance"`
BtcBalance string `json:"btc_balance"`
CadReserved string `json:"cad_reserved"`
BtcReserved string `json:"btc_reserved"`
CadAvailable string `json:"cad_available"`
BtcAvailable string `json:"btc_available"`
Fee string `json:"fee"`
}
type OrderId struct {
ID string `json:"id"`
}
type LookupOrderResponse struct {
Amount string `json:"amount"`
Book string `json:"book"`
Created string `json:"created"`
Updated string `json:"updated"`
ID string `json:"id"`
Price string `json:"price"`
Status string `json:"status"`
Type string `json:"type"`
}
type TransactionResponse []Transaction
type Transaction struct {
Amount string `json:"amount"`
Date string `json:"date"`
Price string `json:"price"`
Tid uint `json:"tid"`
}
type OpenOrdersResponse []OpenOrder
type OpenOrder struct {
Amount string `json:"amount"`
Datetime string `json:"datetime"`
ID string `json:"id"`
Price string `json:"price"`
Status string `json:"status"`
Type string `json:"type"`
}