Documentation ¶
Overview ¶
Package bankaccount provides the bankaccount related APIs
Index ¶
- func Del(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- func Get(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- func New(params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- func Update(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- type Client
- func (c Client) Del(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- func (c Client) Get(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- func (c Client) List(listParams *stripe.BankAccountListParams) *Iter
- func (c Client) New(params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- func (c Client) Update(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
- type Iter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Del ¶
func Del(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
Del removes a bank account.
func Get ¶
func Get(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
Get returns the details of a bank account.
func New ¶
func New(params *stripe.BankAccountParams) (*stripe.BankAccount, error)
New creates a new bank account.
func Update ¶
func Update(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
Update updates a bank account's properties.
Types ¶
type Client ¶
Client is used to invoke bankaccount related APIs.
func (Client) Del ¶
func (c Client) Del(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
Del removes a bank account.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
Get returns the details of a bank account.
func (Client) List ¶
func (c Client) List(listParams *stripe.BankAccountListParams) *Iter
List returns a list of bank accounts.
func (Client) New ¶
func (c Client) New(params *stripe.BankAccountParams) (*stripe.BankAccount, error)
New creates a new bank account.
func (Client) Update ¶
func (c Client) Update(id string, params *stripe.BankAccountParams) (*stripe.BankAccount, error)
Update updates a bank account's properties.
type Iter ¶
Iter is an iterator for bank accounts.
func List ¶
func List(params *stripe.BankAccountListParams) *Iter
List returns a list of bank accounts.
func (*Iter) BankAccount ¶
func (i *Iter) BankAccount() *stripe.BankAccount
BankAccount returns the bank account which the iterator is currently pointing to.
func (*Iter) BankAccountList ¶
func (i *Iter) BankAccountList() *stripe.BankAccountList
BankAccountList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.