Interface EntityMetaSysProps

interface EntityMetaSysProps {
    archivedAt?: string;
    archivedBy?: SysLink;
    archivedVersion?: number;
    contentType: SysLink;
    createdAt: string;
    createdBy?: SysLink;
    deletedAt?: string;
    deletedBy?: SysLink;
    deletedVersion?: number;
    environment: SysLink;
    fieldStatus?: {
        *: Record<string, "published" | "draft" | "changed">;
    };
    firstPublishedAt?: string;
    id: string;
    locale?: string;
    publishedAt?: string;
    publishedBy?: Link<"User"> | Link<"AppDefinition">;
    publishedCounter?: number;
    publishedVersion?: number;
    space: SysLink;
    status?: SysLink;
    type: string;
    updatedAt: string;
    updatedBy?: SysLink;
    version: number;
}

Hierarchy (view full)

Properties

archivedAt?: string
archivedBy?: SysLink
archivedVersion?: number
contentType: SysLink

contentType only exists on entries. Please refactor to use a type guard to get the correct EntryMetaSysProps type with this property.

createdAt: string
createdBy?: SysLink
deletedAt?: string
deletedBy?: SysLink
deletedVersion?: number
environment: SysLink
fieldStatus?: {
    *: Record<string, "published" | "draft" | "changed">;
}
firstPublishedAt?: string
id: string
locale?: string
publishedAt?: string
publishedBy?: Link<"User"> | Link<"AppDefinition">
publishedCounter?: number
publishedVersion?: number
space: SysLink
status?: SysLink

status only exists on entities. Please refactor to use a type guard to get the correct EntityMetaSysProps type with this property.

type: string
updatedAt: string
updatedBy?: SysLink
version: number