import { KmipStruct } from "../json/KmipStruct"; import { KmipObject } from "../objects/KmipObject"; import { ObjectType } from "../types/ObjectType"; export declare class GetResponse implements KmipStruct { private _objectType; private _uniqueIdentifier; private _object; constructor(objectType: ObjectType, uniqueIdentifier: string, object: KmipObject); get objectType(): ObjectType; set objectType(value: ObjectType); get uniqueIdentifier(): string; set uniqueIdentifier(value: string); get object(): KmipObject; set object(value: KmipObject); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=GetResponse.d.ts.map