interface BlogPostBulk {
    _links?: AbstractPageLinks;
    authorId?: string;
    body?: BodyBulk;
    createdAt?: string;
    id?: string;
    spaceId?: string;
    status?: BlogPostContentStatus;
    title?: string;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • BlogPostBulk

Properties

authorId?: string

The account ID of the user who created this blog post originally.

body?: BodyBulk

Contains fields for each representation type requested.

createdAt?: string

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

id?: string

ID of the blog post.

spaceId?: string

ID of the space the blog post is in.

The status of the content.

title?: string

Title of the blog post.

version?: Version