/** * Organizze API * Specification for the Organizze API described in [https://github.com/organizze/api-doc](https://github.com/organizze/api-doc) * * 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 NotFound */ export interface NotFound { /** * * @type {string} * @memberof NotFound */ error?: NotFoundErrorEnum; } /** * @export * @enum {string} */ export declare enum NotFoundErrorEnum { RegistroNoEncontrado = "registro n\u00E3o encontrado" } /** * Check if a given object implements the NotFound interface. */ export declare function instanceOfNotFound(value: object): value is NotFound; export declare function NotFoundFromJSON(json: any): NotFound; export declare function NotFoundFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotFound; export declare function NotFoundToJSON(json: any): NotFound; export declare function NotFoundToJSONTyped(value?: NotFound | null, ignoreDiscriminator?: boolean): any;