Documentation ¶
Index ¶
Constants ¶
View Source
const ( // BaseURL is the base URL for the Bybit API BaseURL = "https://api.bybit.com" // TestnetBaseURL is the base URL for the Bybit Testnet API TestnetBaseURL = "https://api-testnet.bybit.com" // ApiVersion is the version of the Bybit API ApiVersion = "v5" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Response ¶
type Response interface { Unmarshal(v interface{}) error Data() []byte Status() string StatusCode() int Error() error }
func NewResponse ¶
type ResponseImpl ¶
type ResponseImpl struct {
// contains filtered or unexported fields
}
func (*ResponseImpl) Data ¶
func (r *ResponseImpl) Data() []byte
func (*ResponseImpl) Error ¶
func (r *ResponseImpl) Error() error
func (*ResponseImpl) Status ¶
func (r *ResponseImpl) Status() string
func (*ResponseImpl) StatusCode ¶
func (r *ResponseImpl) StatusCode() int
func (*ResponseImpl) Unmarshal ¶
func (r *ResponseImpl) Unmarshal(v interface{}) error
Click to show internal directories.
Click to hide internal directories.