import { SdPlatformResponseModelBase } from "./SdPlatformResponseModel"; /** * Domain - public access level */ export interface SdPlatformResponseDomain { /** id of the domain */ readonly id: string; /** name of the domain, e.g. www.shapediver.com or 127.0.0.1:8080 */ readonly name: string; } /** * Domain - admin access level */ export interface SdPlatformResponseDomainAdmin extends SdPlatformResponseDomain { /** number of models the domain is attached to */ readonly models_count?: number; /** uuids of models the domain attached to */ readonly models?: Array; /** epoch timestamp */ readonly created_at: number; /** epoch timestamp */ readonly updated_at: number; /** epoch timestamp */ readonly deleted_at?: number; } //# sourceMappingURL=SdPlatformResponseDomain.d.ts.map