@camunda8/sdk
    Preparing search index...

    Interface SearchProcessDefinitionsResponse

    interface SearchProcessDefinitionsResponse {
        items: {
            name: string;
            processDefinitionId: string;
            processDefinitionKey: string;
            resourceName: string;
            tenantId: string;
            version: number;
            versionTag?: string;
        }[];
        page: SearchResponsePagination;
    }
    Index

    Properties

    Properties

    items: {
        name: string;
        processDefinitionId: string;
        processDefinitionKey: string;
        resourceName: string;
        tenantId: string;
        version: number;
        versionTag?: string;
    }[]

    Type declaration

    • name: string

      Name of this process definition.

    • processDefinitionId: string

      Process definition ID of this process definition.

    • processDefinitionKey: string

      The key for this process definition.

    • resourceName: string

      Resource name for this process definition.

    • tenantId: string

      Tenant ID of this process definition.

    • version: number

      Version of this process definition.

    • OptionalversionTag?: string

      Version tag of this process definition.