/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 Conflict */ export interface Conflict { /** * Human-readable error message * @type {string} * @memberof Conflict */ error?: string; } export declare function ConflictFromJSON(json: any): Conflict; export declare function ConflictFromJSONTyped(json: any, ignoreDiscriminator: boolean): Conflict; export declare function ConflictToJSON(value?: Conflict | null): any;