public TFSubscriptionActionFeedbackMsg(HeaderMsg header, GoalStatusMsg status, TFSubscriptionFeedbackMsg feedback)
 {
     _header   = header;
     _status   = status;
     _feedback = feedback;
 }
 public TFSubscriptionActionFeedbackMsg(JSONNode msg)
 {
     _header   = new HeaderMsg(msg["header"]);
     _status   = new GoalStatusMsg(msg["status"]);
     _feedback = new TFSubscriptionFeedbackMsg(msg["feedback"]);
 }