export interface IssueContextVariable {
  /** The issue ID. */
  id?: number;
  /** The issue key. */
  key?: string;
  /** Type of custom context variable. */
  type: string;
}
