/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface IssueTypeToContextMappingAsResponse { /** * The ID of the context. */ contextId: string; /** * Whether the context is mapped to any issue type. */ isAnyIssueType?: boolean; /** * The ID of the issue type. */ issueTypeId?: string; } //# sourceMappingURL=IssueTypeToContextMappingAsResponse.d.ts.map