/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { SecurityLevelAsResponse } from "../definitions/SecurityLevelAsResponse"; export interface SecuritySchemeAsResponse { /** * The ID of the default security level. */ defaultSecurityLevelId?: number; /** * The description of the issue security scheme. */ description?: string; /** * The ID of the issue security scheme. */ id?: number; levels?: Array; /** * The name of the issue security scheme. */ name?: string; /** * The URL of the issue security scheme. */ self?: string; } //# sourceMappingURL=SecuritySchemeAsResponse.d.ts.map