import type { ModuleType } from '../schemas/ModuleType'; import type { FavoritesResourceType } from '../schemas/FavoritesResourceType'; /** * This is the favorite entity defined in Harness */ export interface FavoriteDto { module?: ModuleType; /** * Organization Identifier for the Entity. */ org?: string; /** * Project Identifier for the Entity. */ project?: string; /** * Resource Identifier of the Entity. */ resource_id?: string; /** * Type of resource */ resource_type?: FavoritesResourceType; /** * Identifier of the user. */ user_id?: string; }