ServiceLevelAgreement: {
    type: "UNKNOWN";
    [k: string]: unknown;
} | {
    createdAt: Datetime;
    createdBy: InternalActor;
    firstResponseTimeMinutes: number;
    id: Id;
    threadPriorityFilter: ThreadPriority[];
    tier: Tier;
    type: "FIRST_RESPONSE_TIME";
    updatedAt: Datetime;
    updatedBy: InternalActor;
    useBusinessHoursOnly: boolean;
    [k: string]: unknown;
} | {
    createdAt: Datetime;
    createdBy: InternalActor;
    id: Id;
    nextResponseTimeMinutes: number;
    threadPriorityFilter: ThreadPriority[];
    tier: Tier;
    type: "NEXT_RESPONSE_TIME";
    updatedAt: Datetime;
    updatedBy: InternalActor;
    useBusinessHoursOnly: boolean;
    [k: string]: unknown;
}

Type declaration

  • [k: string]: unknown
  • type: "UNKNOWN"

Type declaration

Type declaration

Generated using TypeDoc