public MEGAResponse(byte[] input)
 {
     buffer   = input;
     response = new RESPONSE_FEEDBACK();
     this.load();
     //! emulate response
     response.details = new string[] {};
 }
 public JSONResponse(byte[] input)
 {
     JSONByte = input;
     response = new RESPONSE_FEEDBACK();
     this.Load();
 }