Documentation ¶
Overview ¶
Package paymentintent provides the /payment_intents APIs
Index ¶
- func Cancel(id string, params *stripe.PaymentIntentCancelParams) (*stripe.PaymentIntent, error)
- func Capture(id string, params *stripe.PaymentIntentCaptureParams) (*stripe.PaymentIntent, error)
- func Confirm(id string, params *stripe.PaymentIntentConfirmParams) (*stripe.PaymentIntent, error)
- func Get(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
- func New(params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
- func Update(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
- func VerifyMicrodeposits(id string, params *stripe.PaymentIntentVerifyMicrodepositsParams) (*stripe.PaymentIntent, error)
- type Client
- func (c Client) Cancel(id string, params *stripe.PaymentIntentCancelParams) (*stripe.PaymentIntent, error)
- func (c Client) Capture(id string, params *stripe.PaymentIntentCaptureParams) (*stripe.PaymentIntent, error)
- func (c Client) Confirm(id string, params *stripe.PaymentIntentConfirmParams) (*stripe.PaymentIntent, error)
- func (c Client) Get(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
- func (c Client) List(listParams *stripe.PaymentIntentListParams) *Iter
- func (c Client) New(params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
- func (c Client) Search(params *stripe.PaymentIntentSearchParams) *SearchIter
- func (c Client) Update(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
- func (c Client) VerifyMicrodeposits(id string, params *stripe.PaymentIntentVerifyMicrodepositsParams) (*stripe.PaymentIntent, error)
- type Iter
- type SearchIter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Cancel ¶
func Cancel(id string, params *stripe.PaymentIntentCancelParams) (*stripe.PaymentIntent, error)
Cancel is the method for the `POST /v1/payment_intents/{intent}/cancel` API.
func Capture ¶
func Capture(id string, params *stripe.PaymentIntentCaptureParams) (*stripe.PaymentIntent, error)
Capture is the method for the `POST /v1/payment_intents/{intent}/capture` API.
func Confirm ¶
func Confirm(id string, params *stripe.PaymentIntentConfirmParams) (*stripe.PaymentIntent, error)
Confirm is the method for the `POST /v1/payment_intents/{intent}/confirm` API.
func Get ¶
func Get(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
Get returns the details of a payment intent.
func New ¶
func New(params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
New creates a new payment intent.
func Update ¶
func Update(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
Update updates a payment intent's properties.
func VerifyMicrodeposits ¶ added in v72.87.0
func VerifyMicrodeposits(id string, params *stripe.PaymentIntentVerifyMicrodepositsParams) (*stripe.PaymentIntent, error)
VerifyMicrodeposits is the method for the `POST /v1/payment_intents/{intent}/verify_microdeposits` API.
Types ¶
type Client ¶
Client is used to invoke /payment_intents APIs.
func (Client) Cancel ¶
func (c Client) Cancel(id string, params *stripe.PaymentIntentCancelParams) (*stripe.PaymentIntent, error)
Cancel is the method for the `POST /v1/payment_intents/{intent}/cancel` API.
func (Client) Capture ¶
func (c Client) Capture(id string, params *stripe.PaymentIntentCaptureParams) (*stripe.PaymentIntent, error)
Capture is the method for the `POST /v1/payment_intents/{intent}/capture` API.
func (Client) Confirm ¶
func (c Client) Confirm(id string, params *stripe.PaymentIntentConfirmParams) (*stripe.PaymentIntent, error)
Confirm is the method for the `POST /v1/payment_intents/{intent}/confirm` API.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
Get returns the details of a payment intent.
func (Client) List ¶
func (c Client) List(listParams *stripe.PaymentIntentListParams) *Iter
List returns a list of payment intents.
func (Client) New ¶
func (c Client) New(params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
New creates a new payment intent.
func (Client) Search ¶ added in v72.97.0
func (c Client) Search(params *stripe.PaymentIntentSearchParams) *SearchIter
Search returns a search result containing payment intents.
func (Client) Update ¶
func (c Client) Update(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
Update updates a payment intent's properties.
func (Client) VerifyMicrodeposits ¶ added in v72.87.0
func (c Client) VerifyMicrodeposits(id string, params *stripe.PaymentIntentVerifyMicrodepositsParams) (*stripe.PaymentIntent, error)
VerifyMicrodeposits is the method for the `POST /v1/payment_intents/{intent}/verify_microdeposits` API.
type Iter ¶
Iter is an iterator for payment intents.
func List ¶
func List(params *stripe.PaymentIntentListParams) *Iter
List returns a list of payment intents.
func (*Iter) PaymentIntent ¶
func (i *Iter) PaymentIntent() *stripe.PaymentIntent
PaymentIntent returns the payment intent which the iterator is currently pointing to.
func (*Iter) PaymentIntentList ¶
func (i *Iter) PaymentIntentList() *stripe.PaymentIntentList
PaymentIntentList 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 SearchIter ¶ added in v72.97.0
type SearchIter struct {
*stripe.SearchIter
}
SearchIter is an iterator for payment intents.
func Search ¶ added in v72.97.0
func Search(params *stripe.PaymentIntentSearchParams) *SearchIter
Search returns a search result containing payment intents.
func (*SearchIter) PaymentIntent ¶ added in v72.97.0
func (i *SearchIter) PaymentIntent() *stripe.PaymentIntent
PaymentIntent returns the payment intent which the iterator is currently pointing to.
func (*SearchIter) PaymentIntentSearchResult ¶ added in v72.97.0
func (i *SearchIter) PaymentIntentSearchResult() *stripe.PaymentIntentSearchResult
PaymentIntentSearchResult returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.