import { SdPlatformResponseOrganizationPublic } from "./SdPlatformResponseOrganization"; import { SdPlatformResponseUserPublic } from "./SdPlatformResponseUser"; /** * Tag which can be attached to a model */ export interface SdPlatformResponseTag { /** * Unique id of the tag */ readonly id: string; /** * Name of the tag. */ readonly name: string; } /** * Tag which can be attached to a model - admin access level */ export interface SdPlatformResponseTagAdmin extends SdPlatformResponseTag { /** * Number of models the tag is attached to. */ readonly models_count?: number; /** * User uuid of the user who created the tag. */ readonly user_id?: string; /** * User who created the tag. */ readonly user?: SdPlatformResponseUserPublic; /** * Organization uuid of the organization the tag is attached to. */ readonly organization_id?: string; /** * Organization the tag is attached to. */ readonly organization?: SdPlatformResponseOrganizationPublic; /** * Epoch timestamp */ readonly created_at: number; /** * Epoch timestamp */ readonly updated_at: number; /** * Epoch timestamp */ readonly deleted_at?: number; } //# sourceMappingURL=SdPlatformResponseTag.d.ts.map