interface SmartLinkSingle {
    _links?: SmartLinkLinks;
    authorId?: string;
    createdAt?: string;
    embedUrl?: string;
    id?: string;
    ownerId?: string;
    parentId?: string;
    parentType?: ParentContentType;
    position?: null | number;
    spaceId?: string;
    status?: ContentStatus;
    title?: string;
    type?: string;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • SmartLinkSingle

Properties

authorId?: string

The account ID of the user who created this Smart Link in the content tree originally.

createdAt?: string

Date and time when the Smart Link in the content tree was created. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

embedUrl?: string

The embedded URL of the Smart Link. If the Smart Link does not have an embedded URL, this property will not be included in the response.

id?: string

ID of the Smart Link in the content tree.

ownerId?: string

The account ID of the user who owns this Smart Link in the content tree.

parentId?: string

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

parentType?: ParentContentType

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

position?: null | number

Position of the Smart Link within the given parent page tree.

spaceId?: string

ID of the space the Smart Link is in.

status?: ContentStatus

The status of the content.

title?: string

Title of the Smart Link in the content tree.

type?: string

The content type of the object.

version?: Version