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 ListPaymentServicesGlobals = { merchantAccountId?: string | undefined; }; export type ListPaymentServicesRequest = { /** * Return any payment service for this method. */ method?: components.Method | null | undefined; /** * 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; /** * Return any deleted payment service. */ deleted?: boolean | null | undefined; /** * Include the non-secret credential and reporting fields for each payment service. Disable this to reduce response time if you don't need them. */ includeFields?: boolean | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type ListPaymentServicesResponse = { result: components.PaymentServices; }; /** @internal */ export type ListPaymentServicesRequest$Outbound = { method?: string | null | undefined; cursor?: string | null | undefined; limit: number; deleted?: boolean | null | undefined; include_fields: boolean; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListPaymentServicesRequest$outboundSchema: z.ZodType; export declare function listPaymentServicesRequestToJSON(listPaymentServicesRequest: ListPaymentServicesRequest): string; /** @internal */ export declare const ListPaymentServicesResponse$inboundSchema: z.ZodType; export declare function listPaymentServicesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpaymentservices.d.ts.map