/** * 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 StorNextLicenseCheckEndpointResponse */ export interface StorNextLicenseCheckEndpointResponse { /** * * @type {string} * @memberof StorNextLicenseCheckEndpointResponse */ name: string; /** * * @type {string} * @memberof StorNextLicenseCheckEndpointResponse */ mac: string; /** * * @type {string} * @memberof StorNextLicenseCheckEndpointResponse */ key: string; /** * * @type {string} * @memberof StorNextLicenseCheckEndpointResponse */ type: string; /** * * @type {string} * @memberof StorNextLicenseCheckEndpointResponse */ comment: string; /** * * @type {boolean} * @memberof StorNextLicenseCheckEndpointResponse */ valid: boolean; } export declare function StorNextLicenseCheckEndpointResponseFromJSON(json: any): StorNextLicenseCheckEndpointResponse; export declare function StorNextLicenseCheckEndpointResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StorNextLicenseCheckEndpointResponse; export declare function StorNextLicenseCheckEndpointResponseToJSON(value?: StorNextLicenseCheckEndpointResponse | null): any;