/** * 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 InstallLicenseEndpointRequest */ export interface InstallLicenseEndpointRequest { /** * * @type {string} * @memberof InstallLicenseEndpointRequest */ license: string; /** * * @type {string} * @memberof InstallLicenseEndpointRequest */ signature: string; } export declare function InstallLicenseEndpointRequestFromJSON(json: any): InstallLicenseEndpointRequest; export declare function InstallLicenseEndpointRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InstallLicenseEndpointRequest; export declare function InstallLicenseEndpointRequestToJSON(value?: InstallLicenseEndpointRequest | null): any;