Describes a terminal application.
import { TerminalApplication } from "@moovio/sdk/models/components";
let value: TerminalApplication = {
terminalApplicationID: "12345678-1234-1234-1234-123456789012",
status: "enabled",
platform: "ios",
appBundleID: "com.example.app",
packageName: "com.example.app",
sha256Digest: "1234567890",
versionCode: "1.0.0",
};
Field | Type | Required | Description | Example |
---|---|---|---|---|
terminalApplicationID |
string | ✔️ | ID of the terminal application. | 12345678-1234-1234-1234-123456789012 |
status |
components.TerminalApplicationStatus | ✔️ | Status of the terminal application. | enabled |
platform |
components.TerminalApplicationPlatform | ✔️ | Platform of the terminal application. | ios |
appBundleID |
string | ➖ | The app bundle identifier of the terminal application. Will be returned if platform is ios . |
|
packageName |
string | ➖ | The app package name of the terminal application. Will be returned if platform is android . |
|
sha256Digest |
string | ➖ | The app version of the terminal application Will be returned if platform is android . |
|
versionCode |
string | ➖ | The app version of the terminal application Will be returned if platform is android . |