/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.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 ProblemResponse */ export interface ProblemResponse { /** * * @type {number} * @memberof ProblemResponse */ code?: number | null; /** * * @type {{ [key: string]: Array | null; }} * @memberof ProblemResponse */ error?: { [key: string]: Array | null; } | null; } /** * Check if a given object implements the ProblemResponse interface. */ export declare function instanceOfProblemResponse(value: object): value is ProblemResponse; export declare function ProblemResponseFromJSON(json: any): ProblemResponse; export declare function ProblemResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProblemResponse; export declare function ProblemResponseToJSON(json: any): ProblemResponse; export declare function ProblemResponseToJSONTyped(value?: ProblemResponse | null, ignoreDiscriminator?: boolean): any;