Describes a create terminal application request.
import { CreateTerminalApplication } from "@moovio/sdk/models/components";
let value: CreateTerminalApplication = {
platform: "ios",
appBundleID: "com.example.app",
packageName: "com.example.app",
sha256Digest: "1234567890",
versionCode: "1.0.0",
};
Field | Type | Required | Description | Example |
---|---|---|---|---|
platform |
components.TerminalApplicationPlatform | ✔️ | Platform of the terminal application. | ios |
appBundleID |
string | ➖ | The app bundle identifier of the terminal application. Required if platform is ios . |
|
packageName |
string | ➖ | The app package name of the terminal application. Required if platform is android . |
|
sha256Digest |
string | ➖ | The app version of the terminal application. Required if paltform is android . |
|
versionCode |
string | ➖ | The app version of the terminal application. Required if platform is android . |