mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 17:43:52 +00:00
59 lines
1.8 KiB
Go
59 lines
1.8 KiB
Go
package kucoinapi
|
|
|
|
//go:generate -command GetRequest requestgen -method GET -responseType .APIResponse -responseDataField Data
|
|
//go:generate -command PostRequest requestgen -method POST -responseType .APIResponse -responseDataField Data
|
|
|
|
import (
|
|
"github.com/c9s/requestgen"
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
)
|
|
|
|
type AccountService struct {
|
|
client *RestClient
|
|
}
|
|
|
|
func (s *AccountService) NewListSubAccountsRequest() *ListSubAccountsRequest {
|
|
return &ListSubAccountsRequest{client: s.client}
|
|
}
|
|
|
|
func (s *AccountService) NewListAccountsRequest() *ListAccountsRequest {
|
|
return &ListAccountsRequest{client: s.client}
|
|
}
|
|
|
|
func (s *AccountService) NewGetAccountRequest(accountID string) *GetAccountRequest {
|
|
return &GetAccountRequest{client: s.client, accountID: accountID}
|
|
}
|
|
|
|
type SubAccount struct {
|
|
UserID string `json:"userId"`
|
|
Name string `json:"subName"`
|
|
Type string `json:"type"`
|
|
Remark string `json:"remarks"`
|
|
}
|
|
|
|
//go:generate GetRequest -url "/api/v1/sub/user" -type ListSubAccountsRequest -responseDataType []SubAccount
|
|
type ListSubAccountsRequest struct {
|
|
client requestgen.AuthenticatedAPIClient
|
|
}
|
|
|
|
type Account struct {
|
|
ID string `json:"id"`
|
|
Currency string `json:"currency"`
|
|
Type AccountType `json:"type"`
|
|
Balance fixedpoint.Value `json:"balance"`
|
|
Available fixedpoint.Value `json:"available"`
|
|
Holds fixedpoint.Value `json:"holds"`
|
|
}
|
|
|
|
//go:generate GetRequest -url "/api/v1/accounts" -type ListAccountsRequest -responseDataType []Account
|
|
type ListAccountsRequest struct {
|
|
client requestgen.AuthenticatedAPIClient
|
|
}
|
|
|
|
//go:generate GetRequest -url "/api/v1/accounts/:accountID" -type GetAccountRequest -responseDataType .Account
|
|
type GetAccountRequest struct {
|
|
client requestgen.AuthenticatedAPIClient
|
|
accountID string `param:"accountID,slug"`
|
|
}
|