/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TagReference */ export interface TagReference { /** * * @type {number} * @memberof TagReference */ id: number; /** * * @type {Array} * @memberof TagReference */ readonly roots?: Array; /** * * @type {string} * @memberof TagReference */ readonly name?: string; /** * * @type {boolean} * @memberof TagReference */ readonly shared?: boolean; /** * * @type {string} * @memberof TagReference */ readonly color?: string; } export declare function TagReferenceFromJSON(json: any): TagReference; export declare function TagReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): TagReference; export declare function TagReferenceToJSON(value?: TagReference | null): any;