Parameters for the getLocalDocument operation.

interface GetLocalDocumentParams {
    accept?: string;
    attEncodingInfo?: boolean;
    attachments?: boolean;
    db: string;
    docId: string;
    headers?: OutgoingHttpHeaders;
    ifNoneMatch?: string;
    localSeq?: boolean;
}

Properties

accept?: string

The type of the response: application/json, multipart/mixed, multipart/related, or application/octet-stream.

attEncodingInfo?: boolean

Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.

attachments?: boolean

Query parameter to specify whether to include attachments bodies in a response.

db: string

Path parameter to specify the database name.

docId: string

Path parameter to specify the document ID.

headers?: OutgoingHttpHeaders
ifNoneMatch?: string

Header parameter to specify a double quoted document revision token for cache control.

localSeq?: boolean

Query parameter to specify whether to include the last update sequence for the document.

Generated using TypeDoc