/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CreateCustomFieldContext { /** * The description of the context. */ description?: string; /** * The list of issue types IDs for the context. If the list is empty, the context refers to all issue types. */ issueTypeIds?: Array; /** * The name of the context. */ name: string; /** * The list of project IDs associated with the context. If the list is empty, the context is global. */ projectIds?: Array; } //# sourceMappingURL=CreateCustomFieldContext.d.ts.map