import { JavaObject } from '../../java/lang/JavaObject'; import type { List } from '../../java/util/List'; import { Class } from '../../java/lang/Class'; export declare class SimpleOperationResponse extends JavaObject { /** * ID des zugehörigen Objektes. */ id: number | null; /** * Gibt an, ob die Operation erfolgreich war. */ success: boolean; /** * Das Log der Operation. */ log: List; /** * Leerer Standardkonstruktor. */ constructor(); transpilerCanonicalName(): string; isTranspiledInstanceOf(name: string): boolean; static class: Class; static transpilerFromJSON(json: string): SimpleOperationResponse; static transpilerToJSON(obj: SimpleOperationResponse): string; static transpilerToJSONPatch(obj: Partial): string; } export declare function cast_de_svws_nrw_core_data_SimpleOperationResponse(obj: unknown): SimpleOperationResponse; //# sourceMappingURL=SimpleOperationResponse.d.ts.map