import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListPaymentMethodsGlobals = { merchantAccountId?: string | undefined; }; export type ListPaymentMethodsRequest = { /** * A pointer to the page of results to return. */ cursor?: string | null | undefined; /** * The maximum number of items that are at returned. */ limit?: number | undefined; /** * The ID of the buyer to filter payment methods by. */ buyerId?: string | null | undefined; /** * The external identifier of the buyer to filter payment methods by. */ buyerExternalIdentifier?: string | null | undefined; status?: Array | null | undefined; /** * The external identifier of the payment method to filter by. */ externalIdentifier?: string | null | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type ListPaymentMethodsResponse = { result: components.PaymentMethods; }; /** @internal */ export type ListPaymentMethodsRequest$Outbound = { cursor?: string | null | undefined; limit: number; buyer_id?: string | null | undefined; buyer_external_identifier?: string | null | undefined; status?: Array | null | undefined; external_identifier?: string | null | undefined; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListPaymentMethodsRequest$outboundSchema: z.ZodType; export declare function listPaymentMethodsRequestToJSON(listPaymentMethodsRequest: ListPaymentMethodsRequest): string; /** @internal */ export declare const ListPaymentMethodsResponse$inboundSchema: z.ZodType; export declare function listPaymentMethodsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpaymentmethods.d.ts.map