File

src/api/webApi/data/environments/environment.interface.ts

Extends

Identifiable Described

Index

Properties

Properties

accessUrl
accessUrl: string
Type : string
description
description: string
Type : string
id
id: string
Type : string
name
name: string
Type : string
resources
resources: Array<EnvironmentResource>
Type : Array<EnvironmentResource>
serviceId
serviceId: string
Type : string
import { Identifiable } from 'api/webApi/data/identifiable.interface';
import { Described } from 'api/webApi/data/described.interface';
import { EnvironmentResource } from './environmentResource.interface';

export interface Environment extends Identifiable, Described {
  id: string;
  name: string;
  description: string;
  serviceId: string;
  accessUrl: string;
  resources: Array<EnvironmentResource>;
}

results matching ""

    No results matching ""