bbgo_origin/pkg/exchange/kucoin/kucoinapi/account.go

59 lines
1.8 KiB
Go
Raw Normal View History

2021-12-10 13:43:40 +00:00
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"
)
2021-12-10 13:43:40 +00:00
type AccountService struct {
client *RestClient
}
2021-12-31 18:04:20 +00:00
func (s *AccountService) NewListSubAccountsRequest() *ListSubAccountsRequest {
return &ListSubAccountsRequest{client: s.client}
}
2021-12-31 18:04:20 +00:00
func (s *AccountService) NewListAccountsRequest() *ListAccountsRequest {
return &ListAccountsRequest{client: s.client}
}
2021-12-31 18:04:20 +00:00
func (s *AccountService) NewGetAccountRequest(accountID string) *GetAccountRequest {
return &GetAccountRequest{client: s.client, accountID: accountID}
}
2021-12-10 13:43:40 +00:00
type SubAccount struct {
UserID string `json:"userId"`
Name string `json:"subName"`
Type string `json:"type"`
2021-12-10 13:43:40 +00:00
Remark string `json:"remarks"`
}
//go:generate GetRequest -url "/api/v1/sub/user" -type ListSubAccountsRequest -responseDataType []SubAccount
type ListSubAccountsRequest struct {
client requestgen.AuthenticatedAPIClient
2021-12-10 16:25:55 +00:00
}
type Account struct {
ID string `json:"id"`
Currency string `json:"currency"`
Type AccountType `json:"type"`
Balance fixedpoint.Value `json:"balance"`
2021-12-10 16:25:55 +00:00
Available fixedpoint.Value `json:"available"`
Holds fixedpoint.Value `json:"holds"`
2021-12-10 16:25:55 +00:00
}
//go:generate GetRequest -url "/api/v1/accounts" -type ListAccountsRequest -responseDataType []Account
type ListAccountsRequest struct {
client requestgen.AuthenticatedAPIClient
2021-12-10 16:34:49 +00:00
}
//go:generate GetRequest -url "/api/v1/accounts/:accountID" -type GetAccountRequest -responseDataType .Account
type GetAccountRequest struct {
client requestgen.AuthenticatedAPIClient
accountID string `param:"accountID,slug"`
}