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 ListBuyersGlobals = { merchantAccountId?: string | undefined; }; export type ListBuyersRequest = { /** * 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; /** * Filters the results to only the buyers for which the `display_name` or `external_identifier` matches this value. */ search?: string | null | undefined; /** * Filters the results to only the buyers for which the `external_identifier` matches this value. */ externalIdentifier?: string | null | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type ListBuyersResponse = { result: components.Buyers; }; /** @internal */ export type ListBuyersRequest$Outbound = { cursor?: string | null | undefined; limit: number; search?: string | null | undefined; external_identifier?: string | null | undefined; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListBuyersRequest$outboundSchema: z.ZodType; export declare function listBuyersRequestToJSON(listBuyersRequest: ListBuyersRequest): string; /** @internal */ export declare const ListBuyersResponse$inboundSchema: z.ZodType; export declare function listBuyersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listbuyers.d.ts.map