@archastro/sdk
    Preparing search index...

    Interface AgentRoutineRunListResponse

    Cursor-paginated list of agent routine run objects, ordered by creation time descending.

    interface AgentRoutineRunListResponse {
        after_cursor?: string;
        before_cursor?: string;
        data: AgentRoutineRun[];
    }
    Index

    Properties

    after_cursor?: string

    Opaque cursor to pass as the after-cursor parameter to fetch the next page of runs. null when no later results exist.

    before_cursor?: string

    Opaque cursor to pass as the before-cursor parameter to fetch the page of runs that precede this one. null when no earlier results exist.

    Array of agent routine run objects for the current page.