mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
17 lines
662 B
Go
17 lines
662 B
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"
|
|
|
|
//go:generate GetRequest -url "/api/v1/accounts/:accountID" -type GetAccountRequest -responseDataType .Account
|
|
type GetAccountRequest struct {
|
|
client requestgen.AuthenticatedAPIClient
|
|
accountID string `param:"accountID,slug"`
|
|
}
|
|
|
|
func (s *AccountService) NewGetAccountRequest(accountID string) *GetAccountRequest {
|
|
return &GetAccountRequest{client: s.client, accountID: accountID}
|
|
}
|