@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
37 lines (36 loc) • 771 B
TypeScript
/**
* VRt.Studio [ST]
*
* The version of the OpenAPI document: 7.23.2926
* Contact: servicedesk@veeroute.com
*
* NOTE: This class is auto generated by OpenAPI Generator.
* Do not edit the class manually.
*/
import { AttributeStudio } from './attribute';
/**
* Folder specification.
*/
export interface FolderSpecificationStudio {
[key: string]: any | any;
/**
* Parent folder key, `null` if the folder is root.
*/
parent_key?: string | null;
/**
* Folder name.
*/
name: string;
/**
* Folder comment.
*/
comment?: string | null;
/**
* Folder color.
*/
color?: string | null;
/**
* Attributes. Used to add service information.
*/
attributes?: Array<AttributeStudio>;
}