Parameters for the headAttachment operation.

interface HeadAttachmentParams {
    attachmentName: string;
    db: string;
    docId: string;
    headers?: OutgoingHttpHeaders;
    ifMatch?: string;
    ifNoneMatch?: string;
    rev?: string;
}

Properties

attachmentName: string

Path parameter to specify the attachment name.

db: string

Path parameter to specify the database name.

docId: string

Path parameter to specify the document ID.

headers?: OutgoingHttpHeaders
ifMatch?: string

Header parameter to specify the document revision. Alternative to rev query parameter.

ifNoneMatch?: string

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

rev?: string

Query parameter to specify a document revision.

Generated using TypeDoc