-
Notifications
You must be signed in to change notification settings - Fork 0
/
balances.go
55 lines (45 loc) · 1.15 KB
/
balances.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
53
54
55
package secure
import (
"encoding/json"
"fmt"
"net/http"
"tourGo/coinmate"
)
const endpoint = "/balances"
type Balances struct {
Client coinmate.ClientInterface
}
// Order book response
type BalancesResponse struct {
Error bool
ErrorMessage string
Data map[string]BalanceCurrency
}
// Balance currency data
type BalanceCurrency struct {
Currency string `json:"currency"`
Balance float32 `json:"balance"`
Reserved float32 `json:"reserved"`
Available float32 `json:"available"`
}
// Balances endpoint
func (b *Balances) GetBalances() (BalancesResponse, error) {
balancesResponse := BalancesResponse{}
ap := map[string]string{}
r := coinmate.Request{
HTTPMethod: http.MethodPost,
URL: b.Client.GetBaseUrl() + endpoint,
Body: b.Client.GetRequestBody(ap),
}
response, err := b.Client.MakeSecureRequest(r)
if err != nil || response.StatusCode != http.StatusOK {
fmt.Println("Coinmate error: " + string(response.Body))
return balancesResponse, err
}
err = json.Unmarshal(response.Body, &balancesResponse)
if err != nil {
fmt.Println(err)
return balancesResponse, err
}
return balancesResponse, err
}