/** * 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 LicenseDto */ export interface LicenseDto { /** * * @type {number} * @memberof LicenseDto */ id?: number; /** * * @type {string} * @memberof LicenseDto */ key?: string; /** * * @type {string} * @memberof LicenseDto */ licenseText?: string; /** * (RFC 3339) * @type {string} * @memberof LicenseDto */ lastModified?: string; /** * * @type {{ [key: string]: object; }} * @memberof LicenseDto */ attributes?: { [key: string]: object; }; } export declare function LicenseDtoFromJSON(json: any): LicenseDto; export declare function LicenseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LicenseDto; export declare function LicenseDtoToJSON(value?: LicenseDto | null): any;