@runloop/api-client - v1.4.0
    Preparing search index...

    Interface DevboxSnapshotAsyncStatusView

    interface DevboxSnapshotAsyncStatusView {
        status: "error" | "in_progress" | "complete" | "deleted";
        error_message?: string | null;
        snapshot?: DevboxSnapshotView | null;
    }
    Index

    Properties

    status: "error" | "in_progress" | "complete" | "deleted"

    The current status of the snapshot operation.

    error_message?: string | null

    Error message if the operation failed.

    snapshot?: DevboxSnapshotView | null

    The snapshot details if the operation completed successfully.