AboutSupportDeveloper GuideVersion 38.126.82.69

Identifies an application, or instance of an application, and is used to target FDC3 API calls, such as fdc3.open or fdc3.raiseIntent at specific applications or application instances.

Will always include at least an appId field, which uniquely identifies a specific app.

If the instanceId field is set then the AppMetadata object represents a specific instance of the application that may be addressed using that Id.

interface AppIdentifier {
    appId: string;
    instanceId?: string;
}

Hierarchy (view full)

Properties

Properties

appId: string

The unique application identifier located within a specific application directory instance. An example of an appId might be 'app@sub.root'

instanceId?: string

An optional instance identifier, indicating that this object represents a specific instance of the application described.