/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 ComponentDto */ export interface ComponentDto { /** * * @type {number} * @memberof ComponentDto */ id?: number; /** * * @type {string} * @memberof ComponentDto */ key: string; /** * * @type {string} * @memberof ComponentDto */ name: string; /** * * @type {string} * @memberof ComponentDto */ description?: string; } export declare function ComponentDtoFromJSON(json: any): ComponentDto; export declare function ComponentDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentDto; export declare function ComponentDtoToJSON(value?: ComponentDto | null): any;