Interface IApplication

interface IApplication {
    activeVersionId?: string;
    applicationVersions?: IApplicationVersion[];
    availability?: ApplicationAvailability;
    config?: Record<string, any>;
    contextPath?: string;
    description?: string;
    externalUrl?: string;
    id?: string | number;
    key?: string;
    manifest?: Partial<IManifest>;
    name?: string;
    owner?: ITenantReference;
    public?: boolean;
    requiredRoles?: string[];
    self?: string;
    type?: ApplicationType;
    url?: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

activeVersionId?: string
applicationVersions?: IApplicationVersion[]
config?: Record<string, any>
contextPath?: string
description?: string
externalUrl?: string
id?: string | number
key?: string
manifest?: Partial<IManifest>
name?: string
public?: boolean
requiredRoles?: string[]
self?: string
url?: string