import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TerminalApplicationPlatform } from "./terminalapplicationplatform.js"; import { TerminalApplicationStatus } from "./terminalapplicationstatus.js"; /** * Describes a terminal application. */ export type TerminalApplication = { /** * ID of the terminal application. */ terminalApplicationID: string; /** * Status of the terminal application. */ status: TerminalApplicationStatus; /** * Platform of the terminal application. */ platform: TerminalApplicationPlatform; /** * The app bundle identifier of the terminal application. Will be returned if platform is `ios`. */ appBundleID?: string | undefined; /** * The app package name of the terminal application. Will be returned if platform is `android`. */ packageName?: string | undefined; /** * A cryptographic hash of the signing key for the application. Will be returned if platform is `android`. */ sha256Digest?: string | undefined; /** * The app version code of the terminal application. Will be returned if platform is `android`. */ versionCode?: string | undefined; }; /** @internal */ export declare const TerminalApplication$inboundSchema: z.ZodType; /** @internal */ export type TerminalApplication$Outbound = { terminalApplicationID: string; status: string; platform: string; appBundleID?: string | undefined; packageName?: string | undefined; sha256Digest?: string | undefined; versionCode?: string | undefined; }; /** @internal */ export declare const TerminalApplication$outboundSchema: z.ZodType; export declare function terminalApplicationToJSON(terminalApplication: TerminalApplication): string; export declare function terminalApplicationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=terminalapplication.d.ts.map