public static BaseResponse Parse(String json) { BaseResponse ans = new BaseResponse(); JsonAttributes jsonAttr = JsonAttributeGetter.GetJsonAttributes(); ans.status = JsonGetter.getBool(json, jsonAttr.RES_STATUS()); ans.obj = JsonGetter.getObject(json, jsonAttr.RES_DATA()); return(ans); }