Typescript SDK Type Docs
    Preparing search index...

    Interface ApplicationResourceIdentifier

    Resource identifier to an Application. Either id or key is required. If both are set, an InvalidJsonInput error is returned.

    interface ApplicationResourceIdentifier {
        id?: string;
        key?: string;
        typeId: "application";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id?: string

    Unique identifier of the referenced Application. Required if key is absent.

    key?: string

    User-defined unique identifier of the referenced Application. Required if id is absent.

    typeId: "application"

    Type of referenced resource. If given, it must match the expected ReferenceTypeId of the referenced resource.