29 lines
746 B
Go
29 lines
746 B
Go
package binanceapi
|
|
|
|
import (
|
|
"github.com/c9s/requestgen"
|
|
|
|
"git.qtrade.icu/lychiyu/qbtrade/pkg/fixedpoint"
|
|
)
|
|
|
|
//go:generate requestgen -method POST -url "/sapi/v1/margin/borrow-repay" -type PlaceMarginOrderRequest -responseType .TransferResponse
|
|
type PlaceMarginOrderRequest struct {
|
|
client requestgen.AuthenticatedAPIClient
|
|
|
|
asset string `param:"asset"`
|
|
|
|
// TRUE for Isolated Margin, FALSE for Cross Margin, Default FALSE
|
|
isIsolated bool `param:"isIsolated"`
|
|
|
|
// Only for Isolated margin
|
|
symbol *string `param:"symbol"`
|
|
|
|
amount fixedpoint.Value `param:"amount"`
|
|
|
|
BorrowRepayType BorrowRepayType `param:"type"`
|
|
}
|
|
|
|
func (c *RestClient) NewPlaceMarginOrderRequest() *PlaceMarginOrderRequest {
|
|
return &PlaceMarginOrderRequest{client: c}
|
|
}
|