Overview

Summary

ContactDonateImprint


Appendix E-17: APP VERSION (UI prompt)


AppVersionUserDeviceModuleWhatsApp

Properties (5)

PropertyTypeEntityReferenceModule
(1) PlatformSupportLONGAppVersionPlatformSupportUserDeviceModule
(2) ReleaseChannelSTRINGAppVersion
(3) ReleaseDateDATEAppVersion
(4) SizeMegabytesSTRINGAppVersion
(5) VersionStringSTRINGAppVersion


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /appversionfindAllAppVersion()UserDeviceModuleGETAppVersion
(2) /appversion/{id}deleteAppVersionById(id)UserDeviceModuleDELETEAppVersion
(3) /appversion/{id}findAppVersionById(id)UserDeviceModuleGETAppVersion
(4) /appversion/{id}updateAppVersionById(appversion)UserDeviceModulePUTAppVersion
(5) /appversioninsertAppVersion(appversion)UserDeviceModulePOSTAppVersion
(6) /userdevice/appversion/{id}findAllUserDeviceOfAppVersion(id)UserDeviceModuleGETAppVersion UserDevice
(7) /appversion/platformsupport/{id}findAllAppVersionOfPlatformSupport(id)UserDeviceModuleGETPlatformSupport AppVersion





Example:

final AppVersion appversion = (AppVersion) invokeModule(USER_DEVICE_MODULE + "/appversion/" + id, AppVersion.class);
if (appversion != null) {
    final PlatformSupport platformsupport1 = (PlatformSupport) invokeModule(USER_DEVICE_MODULE + "/platformsupport/" + appversion.getPlatformSupport().getId(), PlatformSupport.class);
    if (platformsupport1 != null) {
    }
}
return appversion;


Overview

Summary

ContactDonateImprint