/** The details of a custom field context. */
export interface CustomFieldContext {
  /** The description of the context. */
  description: string;
  /** The ID of the context. */
  id: string;
  /** Whether the context apply to all issue types. */
  isAnyIssueType: boolean;
  /** Whether the context is global. */
  isGlobalContext: boolean;
  /** The name of the context. */
  name: string;
}
