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 ListPaymentServiceDefinitionsRequest = { /** * 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; }; export type ListPaymentServiceDefinitionsResponse = { result: components.PaymentServiceDefinitions; }; /** @internal */ export type ListPaymentServiceDefinitionsRequest$Outbound = { cursor?: string | null | undefined; limit: number; }; /** @internal */ export declare const ListPaymentServiceDefinitionsRequest$outboundSchema: z.ZodType; export declare function listPaymentServiceDefinitionsRequestToJSON(listPaymentServiceDefinitionsRequest: ListPaymentServiceDefinitionsRequest): string; /** @internal */ export declare const ListPaymentServiceDefinitionsResponse$inboundSchema: z.ZodType; export declare function listPaymentServiceDefinitionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpaymentservicedefinitions.d.ts.map