/** * This is the Service entity defined in Harness */ export interface Service { /** * Account Identifier */ account?: string; /** * Description of the entity */ description?: string; /** * version of harness yaml */ harness_version?: string; /** * Identifier of the Service Request. */ identifier: string; /** * Name of the Service Request. */ name: string; /** * Organization Identifier for the Entity. */ org?: string; /** * Project Identifier for the Entity. */ project?: string; /** * Service tags */ tags?: { [key: string]: string; }; /** * Yaml related to service */ yaml?: string; }