interface OptimisticLockErrorOptions {
    message?: string;
    modelName?: string;
    values?: Record<string, unknown>;
    where?: Record<string, unknown>;
}

Properties

message?: string
modelName?: string

The name of the model on which the update was attempted

values?: Record<string, unknown>

The values of the attempted update

where?: Record<string, unknown>