import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardTransactionFailureCode } from "./cardtransactionfailurecode.js"; import { RefundCardStatus } from "./refundcardstatus.js"; export type RefundCardDetails = { status: RefundCardStatus; failureCode?: CardTransactionFailureCode | undefined; initiatedOn?: Date | undefined; confirmedOn?: Date | undefined; settledOn?: Date | undefined; failedOn?: Date | undefined; completedOn?: Date | undefined; }; /** @internal */ export declare const RefundCardDetails$inboundSchema: z.ZodType; /** @internal */ export type RefundCardDetails$Outbound = { status: string; failureCode?: string | undefined; initiatedOn?: string | undefined; confirmedOn?: string | undefined; settledOn?: string | undefined; failedOn?: string | undefined; completedOn?: string | undefined; }; /** @internal */ export declare const RefundCardDetails$outboundSchema: z.ZodType; export declare function refundCardDetailsToJSON(refundCardDetails: RefundCardDetails): string; export declare function refundCardDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=refundcarddetails.d.ts.map