Documentation ¶
Index ¶
Constants ¶
View Source
const ( POST Method = "POST" GET Method = "GET" BaseURL = "https://pro-api.coinmarketcap.com" TestnetBaseURL = "https://sandbox-api.coinmarketcap.com" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { IsTestNet bool // contains filtered or unexported fields }
func (*Client) SetIsTestNet ¶
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.