interface PageBulk {
    _links?: AbstractPageLinks;
    authorId?: string;
    body?: BodyBulk;
    createdAt?: string;
    id?: string;
    lastOwnerId?: null | string;
    ownerId?: null | string;
    parentId?: string;
    parentType?: ParentContentType;
    position?: null | number;
    spaceId?: string;
    status?: ContentStatus;
    subtype?: null | string;
    title?: string;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • PageBulk

Properties

authorId?: string

The account ID of the user who created this page originally.

body?: BodyBulk

Contains fields for each representation type requested.

createdAt?: string

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

id?: string

ID of the page.

lastOwnerId?: null | string

The account ID of the user who owned this page previously, or null if there is no previous owner.

ownerId?: null | string

The account ID of the user who owns this page.

parentId?: string

ID of the parent page, or null if there is no parent page.

parentType?: ParentContentType

Content type of the parent, or null if there is no parent.

position?: null | number

Position of child page within the given parent page tree.

spaceId?: string

ID of the space the page is in.

status?: ContentStatus

The status of the content.

subtype?: null | string

The subtype of the page.

title?: string

Title of the page.

version?: Version