/* tslint:disable */ /* eslint-disable */ /** * Kafka Management API * Kafka Management API is a REST API to manage Kafka instances * * The version of the OpenAPI document: 1.16.0 * Contact: rhosak-support@redhat.com * * 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 ModelError */ export interface ModelError { /** * Human-readable description of the error. Intended for human consumption * @type {string} * @memberof ModelError */ 'reason': string; /** * Relatively unique operation ID of the request associated to the error * @type {string} * @memberof ModelError */ 'operation_id'?: string; /** * The unique and immutable identifier of the resource * @type {string} * @memberof ModelError */ 'id': string; /** * The kind of the resource * @type {string} * @memberof ModelError */ 'kind': string; /** * The absolute path of the resource * @type {string} * @memberof ModelError */ 'href': string; /** * Code of the error * @type {string} * @memberof ModelError */ 'code': string; }