interface AttachmentPropertiesUpdateBody {
    container?: null | Container;
    extensions?: {
        [key: string]: unknown;
    };
    id: string;
    metadata?: {
        mediaType?: string;
    } & {
        [key: string]: unknown;
    };
    status?: string;
    title?: string;
    type: string;
    version: null | VersionV1;
}

Hierarchy

  • Record<string, unknown>
    • AttachmentPropertiesUpdateBody

Properties

container?: null | Container

Container for content. This can be either a space (containing a page or blogpost) or a page/blog post (containing an attachment or comment)

extensions?: {
    [key: string]: unknown;
}
id: string
metadata?: {
    mediaType?: string;
} & {
    [key: string]: unknown;
}
status?: string
title?: string
type: string

Set this to "attachment"

version: null | VersionV1