Documentation
¶
Index ¶
- Constants
- type API
- type Client
- func (c *Client) APIHost() string
- func (c *Client) Addresses(req *addresses.Request) (*addresses.Response, error)
- func (c *Client) Balance(req *balance.Request) (*balance.Response, error)
- func (c *Client) BankAccounts(req *bankaccounts.Request) (*bankaccounts.Response, error)
- func (c *Client) Board(req *board.Request) (*board.Response, error)
- func (c *Client) Chats(req *chats.Request) (*chats.Response, error)
- func (c *Client) Coinins(req *coinins.Request) (*coinins.Response, error)
- func (c *Client) Coinouts(req *coinouts.Request) (*coinouts.Response, error)
- func (c *Client) Collateral(req *collateral.Request) (*collateral.Response, error)
- func (c *Client) CollateralAccounts(req *collateralaccounts.Request) (*collateralaccounts.Response, error)
- func (c *Client) Executions(req *executions.Request) (*executions.Response, error)
- func (c *Client) Health(req *health.Request) (*health.Response, error)
- func (c *Client) Markets(req *markets.Request) (*markets.Response, error)
- func (c *Client) Permissions(req *permissions.Request) (*permissions.Response, error)
- func (c *Client) Ticker(req *ticker.Request) (*ticker.Response, error)
- type ClientOpts
Constants ¶
View Source
const (
APIHost string = "https://api.bitflyer.jp"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { Host string AuthConfig *auth.AuthConfig }
func NewClient ¶
func NewClient(opts *ClientOpts) *Client
func (*Client) BankAccounts ¶
func (c *Client) BankAccounts(req *bankaccounts.Request) (*bankaccounts.Response, error)
func (*Client) Collateral ¶
func (c *Client) Collateral(req *collateral.Request) (*collateral.Response, error)
func (*Client) CollateralAccounts ¶
func (c *Client) CollateralAccounts(req *collateralaccounts.Request) (*collateralaccounts.Response, error)
func (*Client) Executions ¶
func (c *Client) Executions(req *executions.Request) (*executions.Response, error)
func (*Client) Permissions ¶
func (c *Client) Permissions(req *permissions.Request) (*permissions.Response, error)
type ClientOpts ¶
type ClientOpts struct {
AuthConfig *auth.AuthConfig
}