interface PageSingle {
    _links?: AbstractPageLinks;
    authorId?: string;
    body?: BodySingle;
    createdAt?: string;
    id?: string;
    isFavoritedByCurrentUser?: boolean;
    labels?: {
        _links?: OptionalFieldLinks;
        meta?: OptionalFieldMeta;
        results?: Label[];
    } & {
        [key: string]: unknown;
    };
    lastOwnerId?: null | string;
    likes?: {
        _links?: OptionalFieldLinks;
        meta?: OptionalFieldMeta;
        results?: Like[];
    } & {
        [key: string]: unknown;
    };
    operations?: {
        _links?: OptionalFieldLinks;
        meta?: OptionalFieldMeta;
        results?: Operation[];
    } & {
        [key: string]: unknown;
    };
    ownerId?: null | string;
    parentId?: string;
    parentType?: ParentContentType;
    position?: null | number;
    properties?: {
        _links?: OptionalFieldLinks;
        meta?: OptionalFieldMeta;
        results?: ContentProperty[];
    } & {
        [key: string]: unknown;
    };
    spaceId?: string;
    status?: ContentStatus;
    title?: string;
    version?: Version;
    versions?: {
        _links?: OptionalFieldLinks;
        meta?: OptionalFieldMeta;
        results?: Version[];
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • PageSingle

Properties

authorId?: string

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

body?: BodySingle

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.

isFavoritedByCurrentUser?: boolean

Whether the page has been favorited by the current user.

labels?: {
    _links?: OptionalFieldLinks;
    meta?: OptionalFieldMeta;
    results?: Label[];
} & {
    [key: string]: unknown;
}
lastOwnerId?: null | string

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

likes?: {
    _links?: OptionalFieldLinks;
    meta?: OptionalFieldMeta;
    results?: Like[];
} & {
    [key: string]: unknown;
}
operations?: {
    _links?: OptionalFieldLinks;
    meta?: OptionalFieldMeta;
    results?: Operation[];
} & {
    [key: string]: unknown;
}
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.

properties?: {
    _links?: OptionalFieldLinks;
    meta?: OptionalFieldMeta;
    results?: ContentProperty[];
} & {
    [key: string]: unknown;
}
spaceId?: string

ID of the space the page is in.

status?: ContentStatus

The status of the content.

title?: string

Title of the page.

version?: Version
versions?: {
    _links?: OptionalFieldLinks;
    meta?: OptionalFieldMeta;
    results?: Version[];
} & {
    [key: string]: unknown;
}