/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Intercom from "../../../index";
/**
 * The list of contacts affected by a ticket.
 */
export interface TicketContacts {
    /** always contact.list */
    type: "contact.list";
    /** The list of contacts affected by this ticket. */
    contacts: Intercom.ContactReference[];
}
