import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FailedOperationDto = { /** * The error message associated with the failed operation. */ message?: string | undefined; /** * The subscriber ID associated with the failed operation. This field is optional. */ subscriberId?: string | undefined; }; /** @internal */ export declare const FailedOperationDto$inboundSchema: z.ZodType; export declare function failedOperationDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=failedoperationdto.d.ts.map