/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ErrorObjectSchemaSource } from './ErrorObjectSchemaSource'; /** * * @export * @interface ErrorObjectSchema */ export interface ErrorObjectSchema { /** * A unique identifier for this particular occurrence of the problem. * @type {string} * @memberof ErrorObjectSchema */ id?: string; /** * The HTTP status code applicable to this problem, expressed as a string value. * @type {string} * @memberof ErrorObjectSchema */ status?: string; /** * An application-specific error code, expressed as a string value. * @type {string} * @memberof ErrorObjectSchema */ code?: string; /** * A short, human-readable summary of the problem. * @type {string} * @memberof ErrorObjectSchema */ title: string; /** * A human-readable explanation specific to this occurrence of the problem. * @type {string} * @memberof ErrorObjectSchema */ detail: string; /** * * @type {ErrorObjectSchemaSource} * @memberof ErrorObjectSchema */ source?: ErrorObjectSchemaSource; } /** * Check if a given object implements the ErrorObjectSchema interface. */ export declare function instanceOfErrorObjectSchema(value: object): value is ErrorObjectSchema; export declare function ErrorObjectSchemaFromJSON(json: any): ErrorObjectSchema; export declare function ErrorObjectSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorObjectSchema; export declare function ErrorObjectSchemaToJSON(json: any): ErrorObjectSchema; export declare function ErrorObjectSchemaToJSONTyped(value?: ErrorObjectSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ErrorObjectSchema.d.ts.map