public string Serialize() => Helper.ToJson(this);
private static object DeserializeArgument(string argument, Type type) { return(argument != null?Helper.FromJson(argument, type) : null); }