interface AppDetails {
    icon?: AppIcon;
    sys: AppDetailsSys;
    delete(): Promise<void>;
    toPlainObject(): AppDetailsProps;
}

Hierarchy (view full)

Properties

Methods

Properties

icon?: AppIcon

An Icon that represents the App

sys: AppDetailsSys

System metadata

Methods

  • Deletes this object on the server.

    Returns Promise<void>

    Promise for the deletion. It contains no data, but the Promise error case should be handled.