import * as z from "zod/v3"; import * as components from "../components/index.js"; export type IssueGiftCardGlobals = { merchantAccountId?: string | undefined; }; export type IssueGiftCardRequest = { /** * A unique key forwarded to the gift card service to make the issuance idempotent. */ idempotencyKey?: string | null | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; giftCardIssuanceCreate: components.GiftCardIssuanceCreate; }; /** @internal */ export type IssueGiftCardRequest$Outbound = { "idempotency-key"?: string | null | undefined; merchantAccountId?: string | null | undefined; GiftCardIssuanceCreate: components.GiftCardIssuanceCreate$Outbound; }; /** @internal */ export declare const IssueGiftCardRequest$outboundSchema: z.ZodType; export declare function issueGiftCardRequestToJSON(issueGiftCardRequest: IssueGiftCardRequest): string; //# sourceMappingURL=issuegiftcard.d.ts.map