Documentation ¶
Overview ¶
Package paymentsource provides the /customers/{customer}/sources APIs
Index ¶
- func Del(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func Get(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func New(params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func Update(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func Verify(id string, params *stripe.SourceVerifyParams) (*stripe.PaymentSource, error)
- type Client
- func (c Client) Del(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func (c Client) Get(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func (c Client) List(listParams *stripe.SourceListParams) *Iter
- func (c Client) New(params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func (c Client) Update(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
- func (c Client) Verify(id string, params *stripe.SourceVerifyParams) (*stripe.PaymentSource, error)
- type Iter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Del ¶
func Del(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
Del removes a payment source.
func Get ¶
func Get(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
Get returns the details of a payment source.
func New ¶
func New(params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
New creates a new payment source.
func Update ¶
func Update(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
Update updates a payment source's properties.
func Verify ¶
func Verify(id string, params *stripe.SourceVerifyParams) (*stripe.PaymentSource, error)
Verify verifies a source which is used for bank accounts.
Types ¶
type Client ¶
Client is used to invoke /customers/{customer}/sources APIs.
func (Client) Del ¶
func (c Client) Del(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
Del removes a payment source.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
Get returns the details of a payment source.
func (Client) List ¶
func (c Client) List(listParams *stripe.SourceListParams) *Iter
List returns a list of payment sources.
func (Client) New ¶
func (c Client) New(params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
New creates a new payment source.
func (Client) Update ¶
func (c Client) Update(id string, params *stripe.CustomerSourceParams) (*stripe.PaymentSource, error)
Update updates a payment source's properties.
func (Client) Verify ¶
func (c Client) Verify(id string, params *stripe.SourceVerifyParams) (*stripe.PaymentSource, error)
Verify verifies a source which is used for bank accounts.
type Iter ¶
Iter is an iterator for payment sources.
func List ¶
func List(params *stripe.SourceListParams) *Iter
List returns a list of payment sources.
func (*Iter) PaymentSource ¶
func (i *Iter) PaymentSource() *stripe.PaymentSource
PaymentSource returns the payment source which the iterator is currently pointing to.
func (*Iter) SourceList ¶
func (i *Iter) SourceList() *stripe.SourceList
SourceList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.