/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CustomFieldContextAsResponse { /** * 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; } //# sourceMappingURL=CustomFieldContextAsResponse.d.ts.map