ThreadStatusDetail: {
    type: "UNKNOWN";
    [k: string]: unknown;
} | {
    createdAt: Datetime;
    type: "CREATED";
    [k: string]: unknown;
} | {
    type: "NEW_REPLY";
    [k: string]: unknown;
} | {
    type: "IN_PROGRESS";
    [k: string]: unknown;
} | {
    type: "WAITING_FOR_CUSTOMER";
    [k: string]: unknown;
} | {
    durationSeconds: number;
    type: "WAITING_FOR_DURATION";
    waitingUntil: Datetime;
    [k: string]: unknown;
} | {
    linear?: {
        issueId: string;
        [k: string]: unknown;
    };
    type: "THREAD_LINK_UPDATED";
    [k: string]: unknown;
} | {
    type: "DONE_MANUALLY_SET";
    [k: string]: unknown;
} | {
    type: "IGNORED";
    [k: string]: unknown;
} | {
    afterSeconds?: number;
    type: "DONE_AUTOMATICALLY_SET";
    [k: string]: unknown;
} | {
    threadDiscussionId?: Id;
    type: "THREAD_DISCUSSION_RESOLVED";
    [k: string]: unknown;
}

Type declaration

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

Type declaration

  • [k: string]: unknown
  • createdAt: Datetime
  • type: "CREATED"

Type declaration

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

Type declaration

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

Type declaration

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

Type declaration

  • [k: string]: unknown
  • durationSeconds: number
  • type: "WAITING_FOR_DURATION"
  • waitingUntil: Datetime

Type declaration

  • [k: string]: unknown
  • Optional linear?: {
        issueId: string;
        [k: string]: unknown;
    }
    • [k: string]: unknown
    • issueId: string
  • type: "THREAD_LINK_UPDATED"

Type declaration

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

Type declaration

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

Type declaration

  • [k: string]: unknown
  • Optional afterSeconds?: number
  • type: "DONE_AUTOMATICALLY_SET"

Type declaration

  • [k: string]: unknown
  • Optional threadDiscussionId?: Id
  • type: "THREAD_DISCUSSION_RESOLVED"

Generated using TypeDoc