Member Junction
    Preparing search index...

    Result returned by a scheduled job execution

    interface ScheduledJobResult {
        Details?: Record<string, any>;
        ErrorMessage?: string;
        Success: boolean;
    }
    Index

    Properties

    Details?: Record<string, any>

    Job-type specific execution details For Agents: { AgentRunID: string, TokensUsed: number, Cost: number } For Actions: { ResultCode: string, IsSuccess: boolean, OutputParams: any }

    ErrorMessage?: string

    Error message if the job failed

    Success: boolean

    Whether the job completed successfully