UNPKG

stripe

Version:
36 lines (31 loc) 972 B
// File generated from our OpenAPI spec declare module 'stripe' { namespace Stripe { interface SetupAttemptListParams extends PaginationParams { /** * Only return SetupAttempts created by the SetupIntent specified by * this ID. */ setup_intent: string; /** * A filter on the list, based on the object `created` field. The value * can be a string with an integer Unix timestamp or a * dictionary with a number of different query options. */ created?: Stripe.RangeQueryParam | number; /** * Specifies which fields in the response should be expanded. */ expand?: Array<string>; } class SetupAttemptsResource { /** * Returns a list of SetupAttempts that associate with a provided SetupIntent. */ list( params: SetupAttemptListParams, options?: RequestOptions ): ApiListPromise<Stripe.SetupAttempt>; } } }