Interface ContactOptionRef

Represents a reference to a contact option.

interface ContactOptionRef {
    contactGroupId: string;
    label?: string;
    type?: "contactOption";
}

Hierarchy

  • BaseOption
    • ContactOptionRef

Properties

contactGroupId: string

The ID of the contact group associated with this option.

label?: string

The label for the option.

type?: "contactOption"

Specifies that the option is a contact option.

'contactOption'