Documentation ¶
Overview ¶
Package paymentlink provides the /payment_links APIs
Index ¶
- func Get(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
- func New(params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
- func Update(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
- type Client
- func (c Client) Get(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
- func (c Client) List(listParams *stripe.PaymentLinkListParams) *Iter
- func (c Client) ListLineItems(listParams *stripe.PaymentLinkListLineItemsParams) *LineItemIter
- func (c Client) New(params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
- func (c Client) Update(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
- type Iter
- type LineItemIter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Get ¶
func Get(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
Get returns the details of a payment link.
func New ¶
func New(params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
New creates a new payment link.
func Update ¶
func Update(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
Update updates a payment link's properties.
Types ¶
type Client ¶
Client is used to invoke /payment_links APIs.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
Get returns the details of a payment link.
func (Client) List ¶
func (c Client) List(listParams *stripe.PaymentLinkListParams) *Iter
List returns a list of payment links.
func (Client) ListLineItems ¶
func (c Client) ListLineItems(listParams *stripe.PaymentLinkListLineItemsParams) *LineItemIter
ListLineItems is the method for the `GET /v1/payment_links/{payment_link}/line_items` API.
func (Client) New ¶
func (c Client) New(params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
New creates a new payment link.
func (Client) Update ¶
func (c Client) Update(id string, params *stripe.PaymentLinkParams) (*stripe.PaymentLink, error)
Update updates a payment link's properties.
type Iter ¶
Iter is an iterator for payment links.
func List ¶
func List(params *stripe.PaymentLinkListParams) *Iter
List returns a list of payment links.
func (*Iter) PaymentLink ¶
func (i *Iter) PaymentLink() *stripe.PaymentLink
PaymentLink returns the payment link which the iterator is currently pointing to.
func (*Iter) PaymentLinkList ¶
func (i *Iter) PaymentLinkList() *stripe.PaymentLinkList
PaymentLinkList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.
type LineItemIter ¶
LineItemIter is an iterator for line items.
func ListLineItems ¶
func ListLineItems(params *stripe.PaymentLinkListLineItemsParams) *LineItemIter
ListLineItems is the method for the `GET /v1/payment_links/{payment_link}/line_items` API.
func (*LineItemIter) LineItem ¶
func (i *LineItemIter) LineItem() *stripe.LineItem
LineItem returns the line item which the iterator is currently pointing to.
func (*LineItemIter) LineItemList ¶
func (i *LineItemIter) LineItemList() *stripe.LineItemList
LineItemList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.