Type Alias NxObjectAttributes

App object attributes. This structure can also contain extra user-defined attributes.

type NxObjectAttributes = {
    approved?: boolean;
    createdAt?: string;
    description?: string;
    genericType?: AppObjectGenericType;
    id?: string;
    name?: string;
    objectType?: string;
    ownerId?: string;
    publishedAt?: string;
    updatedAt?: string;
}
Index

Properties

approved?: boolean

True if the object is approved.

createdAt?: string

The date and time when the object was created.

description?: string

Object description.

genericType?: AppObjectGenericType
id?: string

The object Id.

name?: string

Object name.

objectType?: string

The type of the object.

ownerId?: string

The object owner's Id.

publishedAt?: string

The date and time when the object was published, empty if unpublished.

updatedAt?: string

The date and time when the object was modified.