@ibm-cloud/cloudant - v0.12.6
    Preparing search index...

    Interface GetLocalDocumentParams

    Parameters for the getLocalDocument operation.

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

    Hierarchy

    • DefaultParams
      • GetLocalDocumentParams
    Index

    Properties

    accept?: string

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

    attachments?: boolean

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

    attEncodingInfo?: boolean

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

    db: string

    Path parameter to specify the database name.

    docId: string

    Path parameter to specify the document ID.

    headers?: OutgoingHttpHeaders
    ifNoneMatch?: string

    Header parameter for a conditional HTTP request not matching an ETag.

    localSeq?: boolean

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

    signal?: GenericAbortSignal