Documentation ¶
Overview ¶
Package applicationfee provides the /application_fees APIs
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Get ¶
func Get(id string, params *stripe.ApplicationFeeParams) (*stripe.ApplicationFee, error)
Retrieves the details of an application fee that your account has collected. The same information is returned when refunding the application fee.
Types ¶
type Client ¶
Client is used to invoke /application_fees APIs.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.ApplicationFeeParams) (*stripe.ApplicationFee, error)
Retrieves the details of an application fee that your account has collected. The same information is returned when refunding the application fee.
type Iter ¶
Iter is an iterator for application fees.
func List ¶
func List(params *stripe.ApplicationFeeListParams) *Iter
Returns a list of application fees you've previously collected. The application fees are returned in sorted order, with the most recent fees appearing first.
func (*Iter) ApplicationFee ¶
func (i *Iter) ApplicationFee() *stripe.ApplicationFee
ApplicationFee returns the application fee which the iterator is currently pointing to.
func (*Iter) ApplicationFeeList ¶
func (i *Iter) ApplicationFeeList() *stripe.ApplicationFeeList
ApplicationFeeList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.