/**
 * Interface defining the property object that describes the cases escalate options.
 *
 * @see [CaseEscalateOptions](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface CaseEscalateOptions {
    orgTeamId?: string;
    userId?: string;
    notes?: string;
    message?: string;
    alertCollaborators?: boolean;
}
