Documentation ¶
Overview ¶
Package earlyfraudwarning provides API functions related to early fraud warnings.
For more details, see: https://stripe.com/docs/api/early_fraud_warnings?lang=go
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Get ¶
func Get(id string, params *stripe.RadarEarlyFraudWarningParams) (*stripe.RadarEarlyFraudWarning, error)
Get returns the details of an early fraud warning.
Types ¶
type Client ¶
Client is used to interact with the /radar/early_fraud_warnings API.
func (Client) Get ¶
func (c Client) Get(id string, params *stripe.RadarEarlyFraudWarningParams) (*stripe.RadarEarlyFraudWarning, error)
Get returns the details of an early fraud warning.
type Iter ¶
Iter is an iterator for early fraud warnings.
func List ¶
func List(params *stripe.RadarEarlyFraudWarningListParams) *Iter
List returns a list of early fraud warnings.
func (*Iter) RadarEarlyFraudWarning ¶
func (i *Iter) RadarEarlyFraudWarning() *stripe.RadarEarlyFraudWarning
RadarEarlyFraudWarning returns the early fraud warning which the iterator is currently pointing to.
func (*Iter) RadarEarlyFraudWarningList ¶
func (i *Iter) RadarEarlyFraudWarningList() *stripe.RadarEarlyFraudWarningList
RadarEarlyFraudWarningList returns the current list object which the iterator is currently using. List objects will change as new API calls are made to continue pagination.