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 ListGiftCardsGlobals = { merchantAccountId?: string | undefined; }; export type ListGiftCardsRequest = { buyerExternalIdentifier?: string | null | undefined; buyerId?: string | null | undefined; cursor?: string | null | undefined; limit?: number | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type ListGiftCardsResponse = { result: components.GiftCards; }; /** @internal */ export type ListGiftCardsRequest$Outbound = { buyer_external_identifier?: string | null | undefined; buyer_id?: string | null | undefined; cursor?: string | null | undefined; limit: number; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListGiftCardsRequest$outboundSchema: z.ZodType; export declare function listGiftCardsRequestToJSON(listGiftCardsRequest: ListGiftCardsRequest): string; /** @internal */ export declare const ListGiftCardsResponse$inboundSchema: z.ZodType; export declare function listGiftCardsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listgiftcards.d.ts.map