import { OrgEnvironment } from './OrgEnvironment'; import { Region } from './Region'; import { User } from './User'; export interface Organization { Id?: string; Name: string; CoreApiUrl?: string; Environment?: OrgEnvironment; Region?: Region; readonly Owner?: User; SCOrgId?: string; SCSpaceId?: string; }