Schema for the result of a document modification.

interface DocumentResult {
    caused_by?: string;
    error?: string;
    id: string;
    ok?: boolean;
    reason?: string;
    rev?: string;
}

Properties

caused_by?: string

The cause of the error (if available).

error?: string

The name of the error.

id: string

Schema for a document ID.

ok?: boolean

ok.

reason?: string

The reason the error occurred (if available).

rev?: string

Schema for a document revision identifier.

Generated using TypeDoc