/** * 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 Download */ export interface Download { /** * * @type {number} * @memberof Download */ id: number; /** * * @type {string} * @memberof Download */ name: string; /** * * @type {string} * @memberof Download */ iconPath?: string | null; /** * * @type {string} * @memberof Download */ faIcon?: string | null; /** * * @type {string} * @memberof Download */ path: string; } export declare function DownloadFromJSON(json: any): Download; export declare function DownloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): Download; export declare function DownloadToJSON(value?: Download | null): any;