import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SentReceipt = { /** * Unique identifier for the receipt. */ receiptID: string; /** * The idempotency key used when creating the receipt. */ idempotencyKey: string; /** * When the receipt was sent. */ sentOn: Date; }; /** @internal */ export declare const SentReceipt$inboundSchema: z.ZodType; /** @internal */ export type SentReceipt$Outbound = { receiptID: string; idempotencyKey: string; sentOn: string; }; /** @internal */ export declare const SentReceipt$outboundSchema: z.ZodType; export declare function sentReceiptToJSON(sentReceipt: SentReceipt): string; export declare function sentReceiptFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sentreceipt.d.ts.map