Type Alias NxAttributes

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

type NxAttributes = {
    createdDate?: string;
    custom?: JsonObject;
    description?: string;
    dynamicColor?: string;
    encrypted?: boolean;
    hasSectionAccess?: boolean;
    id?: string;
    isDirectQueryMode?: boolean;
    lastReloadTime?: string;
    modifiedDate?: string;
    name?: string;
    originAppId?: string;
    owner?: string;
    ownerId?: string;
    published?: boolean;
    publishTime?: string;
    thumbnail?: string;
    usage?: UsageEnum;
}
Index

Properties

createdDate?: string

The date and time when the app was created.

custom?: JsonObject

Contains dynamic JSON data specified by the client.

description?: string

App description.

dynamicColor?: string

The dynamic color of the app.

encrypted?: boolean

If set to true, the app is encrypted.

hasSectionAccess?: boolean

If set to true, the app has section access configured,

id?: string

The App ID.

isDirectQueryMode?: boolean

True if the app is a Direct Query app, false if not

lastReloadTime?: string

Date and time of the last reload of the app.

modifiedDate?: string

The date and time when the app was modified.

name?: string

App name.

originAppId?: string

The Origin App ID for published apps.

owner?: string

Deprecated. Use the Users API to fetch user metadata.

ownerId?: string

Identifier of the app owner.

published?: boolean

True if the app is published on-prem, distributed in QCS, false if not.

publishTime?: string

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

thumbnail?: string

App thumbnail.

usage?: UsageEnum