/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface StatusAsResponse { id: string; name: string; description?: string; /** * | Name | Value | Color | | ---- | ----- | ----- | | ACTIVE | 1 | Green | | INACTIVE | 0 | Red | | PENDING | 2 | Yellow | */ category: number; objectSchemaId?: string; } //# sourceMappingURL=StatusAsResponse.d.ts.map