Confluence.js - Cloud and Server API library
    Preparing search index...

    Interface UpdateAttachmentProperties

    interface UpdateAttachmentProperties {
        attachmentId: string;
        id: string;
        update: Record<string, any> & {
            _expandable?: {
                ancestors: string;
                body: string;
                children: string;
                childTypes: string;
                container: string;
                descendants: string;
                extensions: string;
                history: string;
                macroRenderedOutput: string;
                metadata: string;
                operations: string;
                restrictions: string;
                schedulePublishDate: string;
                space: string;
                version: string;
            };
            _links?: GenericLinks;
            ancestors?: Models.Content[];
            body?: any;
            children?: ContentChildren;
            childTypes?: ContentChildType;
            container?: Container;
            descendants?: ContentChildren;
            extensions?: any;
            history?: ContentHistory;
            id: string;
            macroRenderedOutput?: any;
            metadata?: Partial<AttachmentMetadata>;
            operations?: OperationCheckResult[];
            restrictions?: any;
            space?: Models.Space;
            status: string;
            title?: string;
            type: string;
            version: Partial<Version>;
        };
    }
    Index

    Properties

    attachmentId: string

    The ID of the attachment to update.

    id: string

    The ID of the content that the attachment is attached to.

    update: Record<string, any> & {
        _expandable?: {
            ancestors: string;
            body: string;
            children: string;
            childTypes: string;
            container: string;
            descendants: string;
            extensions: string;
            history: string;
            macroRenderedOutput: string;
            metadata: string;
            operations: string;
            restrictions: string;
            schedulePublishDate: string;
            space: string;
            version: string;
        };
        _links?: GenericLinks;
        ancestors?: Models.Content[];
        body?: any;
        children?: ContentChildren;
        childTypes?: ContentChildType;
        container?: Container;
        descendants?: ContentChildren;
        extensions?: any;
        history?: ContentHistory;
        id: string;
        macroRenderedOutput?: any;
        metadata?: Partial<AttachmentMetadata>;
        operations?: OperationCheckResult[];
        restrictions?: any;
        space?: Models.Space;
        status: string;
        title?: string;
        type: string;
        version: Partial<Version>;
    }