/** * This file was auto-generated by Fern from our API Definition. */ import * as Mercoa from "../../../../index.js"; /** * @example * {} * * @example * { * type: "bankAccount" * } * * @example * { * entityId: "ent_8545a84e-a45f-41bf-bdf1-33b42a55812c" * } */ export interface FindPaymentMethodsRequest { /** Number of payment methods to return. Limit can range between 1 and 100, and the default is 10. */ limit?: number; /** The ID of the payment method to start after. If not provided, the first page of payment methods will be returned. */ startingAfter?: Mercoa.PaymentMethodId; /** Type of payment method to filter */ type?: Mercoa.PaymentMethodType | Mercoa.PaymentMethodType[]; /** Entity ID to filter */ entityId?: Mercoa.EntityId | Mercoa.EntityId[]; }