/** * 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 ReportRecordDto */ export interface ReportRecordDto { /** * * @type {string} * @memberof ReportRecordDto */ libraryName?: string; /** * * @type {string} * @memberof ReportRecordDto */ licenseName?: string; /** * * @type {string} * @memberof ReportRecordDto */ licenseText?: string; /** * * @type {string} * @memberof ReportRecordDto */ contextTag?: string; /** * * @type {string} * @memberof ReportRecordDto */ status?: string; } export declare function ReportRecordDtoFromJSON(json: any): ReportRecordDto; export declare function ReportRecordDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportRecordDto; export declare function ReportRecordDtoToJSON(value?: ReportRecordDto | null): any;