import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ExecutionDetailsSourceEnum } from "./executiondetailssourceenum.js"; import { ExecutionDetailsStatusEnum } from "./executiondetailsstatusenum.js"; import { ProvidersIdEnum } from "./providersidenum.js"; export type ActivityNotificationExecutionDetailResponseDto = { /** * Unique identifier of the execution detail */ id: string; /** * Creation time of the execution detail */ createdAt?: string | undefined; /** * Status of the execution detail */ status: ExecutionDetailsStatusEnum; /** * Detailed information about the execution */ detail: string; /** * Whether the execution is a retry or not */ isRetry: boolean; /** * Whether the execution is a test or not */ isTest: boolean; /** * Provider ID of the job */ providerId?: ProvidersIdEnum | undefined; /** * Raw data of the execution */ raw?: string | null | undefined; /** * Source of the execution detail */ source: ExecutionDetailsSourceEnum; }; /** @internal */ export declare const ActivityNotificationExecutionDetailResponseDto$inboundSchema: z.ZodType; export declare function activityNotificationExecutionDetailResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitynotificationexecutiondetailresponsedto.d.ts.map