import Audit from './audit'; import Endpoint from './endpoint'; import Deployment from './deployment'; export default interface Api { activeContractsCount: number; assetId: string; assetVersion: string; audit: Audit; autodiscoveryInstanceName: string; deprecated?: boolean; endpointUri: string; environmentId: string; groupId: string; id: number; instanceLabel?: string; isPublic?: boolean; masterOrganizationId: string; order: number; organizationId: string; pinned?: boolean; productVersion: string; providerId?: any; stage: string; tags?: any; technology: string; endpoint: Endpoint; deployment: Deployment; lastActiveDate: Date; }