/** * 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 MethodNotAllowed */ export interface MethodNotAllowed { /** * Human-readable error message * @type {string} * @memberof MethodNotAllowed */ error?: string; } export declare function MethodNotAllowedFromJSON(json: any): MethodNotAllowed; export declare function MethodNotAllowedFromJSONTyped(json: any, ignoreDiscriminator: boolean): MethodNotAllowed; export declare function MethodNotAllowedToJSON(value?: MethodNotAllowed | null): any;