nylas
    Preparing search index...

    Interface CalendarNotetakerRules

    Interface for Calendar Notetaker rules

    interface CalendarNotetakerRules {
        eventSelection?: (
            "all"
            | "internal"
            | "external"
            | "ownEvents"
            | "participantOnly"
        )[];
        participantFilter?: CalendarNotetakerParticipantFilter;
    }
    Index

    Properties

    eventSelection?: (
        "all"
        | "internal"
        | "external"
        | "ownEvents"
        | "participantOnly"
    )[]

    Types of events to include for notetaking. This is a union of events that should have a Notetaker sent to them. "internal": Events where the host domain matches all participants' domain names "external": Events where the host domain differs from any participant's domain name "own_events": Events where the host is the same as the user's grant "participant_only": Events where the user's grant is a participant but not the host "all": When all options are included, all events with meeting links will have Notetakers

    Filters to apply based on the number of participants. This is an intersection with the event_selection. When null, there are no restrictions on the number of participants for notetaker events.