blast-graph-angular2
Version:
 **with** 
21 lines (20 loc) • 541 B
TypeScript
import { Instruction } from './instruction';
export declare class GraphResponseMessage {
_correlationId: number;
_key: string;
_instruction: Instruction;
_data: any;
_status: string;
_graphMessageType: string;
_cmd: string;
_attachmentId: string;
constructor(jsonObject: any);
getCorrelationId(): number;
getKey(): string;
getInstruction(): Instruction;
getData(): any;
getStatus(): string;
getGraphMessageType(): string;
getCommand(): string;
getAttachmentId(): string;
}