| Name | Summary |
|---|---|
@SerialName(value = "ENTITLED") Entitled The user possesses a valid entitlement for the app, indicating they have the right to install it, although it is not currently installed on the device. | |
@SerialName(value = "DOWNLOAD_QUEUED") DownloadQueued The app is scheduled for download. The download will start as soon as prior queued downloads are completed. | |
@SerialName(value = "DOWNLOADING") Downloading The app is currently being downloaded to the device. This status is active during the download process until it is complete. | |
@SerialName(value = "INSTALLING") Installing The app is currently being installed on the device. This status remains until the installation is fully completed. | |
@SerialName(value = "INSTALLED") Installed The app is successfully installed on the device and is ready to be used. | |
@SerialName(value = "UNINSTALLING") Uninstalling The app is currently being uninstalled from the device. This status remains until the uninstallation process is complete. | |
@SerialName(value = "INSTALL_QUEUED") InstallQueued The installation of the app is scheduled and will commence once any prior installations are completed. |
| Name | Summary |
|---|---|
valueOf | fun valueOf(value: String): AppStatus Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.) |
values | fun values(): Array<AppStatus> Returns an array containing the constants of this enum type, in the order they’re declared. |