UNPKG

expresspayments

Version:
36 lines (31 loc) 1.21 kB
// File generated from our OpenAPI spec declare module 'expresspayments' { namespace ExpressPayments { 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 it can be a * dictionary with a number of different query options. */ created?: ExpressPayments.RangeQueryParam | number; /** * Specifies which fields in the response should be expanded. */ expand?: Array<string>; } class SetupAttemptsResource { /** * Returns a list of SetupAttempts associated with a provided SetupIntent. */ list( params: SetupAttemptListParams, options?: RequestOptions ): ApiListPromise<ExpressPayments.SetupAttempt>; } } }