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
description?: string
genericType?: AppObjectGenericType
id?: string
name?: string
objectType?: string
ownerId?: string
publishedAt?: string
updatedAt?: string