interface AttachmentBulk {
    _links?: AttachmentLinks;
    blogPostId?: string;
    comment?: string;
    createdAt?: string;
    customContentId?: string;
    downloadLink?: string;
    fileId?: string;
    fileSize?: number;
    id?: string;
    mediaType?: string;
    mediaTypeDescription?: string;
    pageId?: string;
    status?: ContentStatus;
    title?: string;
    version?: Version;
    webuiLink?: string;
}

Hierarchy

  • Record<string, unknown>
    • AttachmentBulk

Properties

blogPostId?: string

ID of the containing blog post.

Note: This is only returned if the attachment has a container that is a blog post.

comment?: string

Comment for the attachment.

createdAt?: string

Date and time when the attachment was created. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

customContentId?: string

ID of the containing custom content.

Note: This is only returned if the attachment has a container that is custom content.

downloadLink?: string

Download link of the attachment.

fileId?: string

File ID of the attachment. This is the ID referenced in atlas_doc_format bodies and is distinct from the attachment ID.

fileSize?: number

File size of the attachment.

id?: string

ID of the attachment.

mediaType?: string

Media Type for the attachment.

mediaTypeDescription?: string

Media Type description for the attachment.

pageId?: string

ID of the containing page.

Note: This is only returned if the attachment has a container that is a page.

status?: ContentStatus

The status of the content.

title?: string

Title of the comment.

version?: Version
webuiLink?: string

WebUI link of the attachment.