import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PaymentMethod } from "./paymentmethod.js"; export type PaymentMethods = { /** * A list of items returned for this request. */ items: Array; /** * The number of items for this page. */ limit: number; /** * The cursor pointing at the next page of items. */ nextCursor?: string | null | undefined; /** * The cursor pointing at the previous page of items. */ previousCursor?: string | null | undefined; }; /** @internal */ export declare const PaymentMethods$inboundSchema: z.ZodType; export declare function paymentMethodsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethods.d.ts.map