/** * DTO for creating a domain */ export interface SdPlatformRequestDomainCreate { /** name of the domain, e.g. www.shapediver.com or 127.0.0.1:8080 */ name: string; /** uuids of models the domain should be attached to */ models?: Array; } /** * DTO for patching a domain */ export interface SdPlatformRequestDomainPatch { /** name of the domain, e.g. www.shapediver.com or 127.0.0.1:8080 */ name?: string; /** uuids of models the domain should be attached to */ models?: Array; } //# sourceMappingURL=SdPlatformRequestDomain.d.ts.map