/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ObjectSchemaAsResponse { workspaceId: string; globalId: string; id: string; name: string; objectSchemaKey: string; description?: string; /** * Always 'Ok' */ status?: string; created: string; updated: string; objectCount: number; objectTypeCount: number; canManage?: boolean; idAsInt?: number; } //# sourceMappingURL=ObjectSchemaAsResponse.d.ts.map