28 lines
825 B
Go
28 lines
825 B
Go
|
package v3
|
||
|
|
||
|
//go:generate -command GetRequest requestgen -method GET
|
||
|
//go:generate -command PostRequest requestgen -method POST
|
||
|
//go:generate -command DeleteRequest requestgen -method DELETE
|
||
|
|
||
|
import (
|
||
|
"github.com/c9s/requestgen"
|
||
|
|
||
|
maxapi "git.qtrade.icu/lychiyu/qbtrade/pkg/exchange/max/maxapi"
|
||
|
"git.qtrade.icu/lychiyu/qbtrade/pkg/fixedpoint"
|
||
|
)
|
||
|
|
||
|
type MarginService struct {
|
||
|
Client *maxapi.RestClient
|
||
|
}
|
||
|
|
||
|
func (s *Client) NewGetMarginBorrowingLimitsRequest() *GetMarginBorrowingLimitsRequest {
|
||
|
return &GetMarginBorrowingLimitsRequest{client: s.Client}
|
||
|
}
|
||
|
|
||
|
type MarginBorrowingLimitMap map[string]fixedpoint.Value
|
||
|
|
||
|
//go:generate GetRequest -url "/api/v3/wallet/m/limits" -type GetMarginBorrowingLimitsRequest -responseType .MarginBorrowingLimitMap
|
||
|
type GetMarginBorrowingLimitsRequest struct {
|
||
|
client requestgen.APIClient
|
||
|
}
|