Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 4.8 KB

terminalapplication.md

File metadata and controls

31 lines (25 loc) · 4.8 KB

TerminalApplication

Describes a terminal application.

Example Usage

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",
};

Fields

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.