@squidcloud/client
    Preparing search index...

    Interface MmMatchMaker

    Represents a matchmaker. The description is used to describe the matchmaker and by the AI to better understand the domain. The categories represent the types of entities that can be matched (it is possible to match items in the same category).

    interface MmMatchMaker {
        categories: MmCategory[];
        description: string;
        id: string;
    }
    Index

    Properties

    categories: MmCategory[]

    An array of categories defining the types of entities that can be matched.

    description: string

    A description aiding the AI in understanding the matchmaker's domain.

    id: string

    The unique identifier of the matchmaker.