public Generator(bool ignore_extras) : base(ignore_extras)
 {
     fieldGeneratorNativeData = new MusicSearchCommandNativeDataJSON.HoldingGenerator("field \"NativeData\" of the MusicSearchCommand class", ignore_extras);
     unknownFieldGenerator    = new UnknownFieldGenerator(ignore_extras);
     set_what("the MusicSearchCommand class");
 }
 public Generator() : base(false)
 {
     fieldGeneratorNativeData = new MusicSearchCommandNativeDataJSON.HoldingGenerator("field \"NativeData\" of the MusicSearchCommand class", false);
     unknownFieldGenerator    = new UnknownFieldGenerator(false);
     set_what("the MusicSearchCommand class");
 }
 public void setNativeData(MusicCommandNativeDataJSON new_value)
 {
     MusicSearchCommandNativeDataJSON.HoldingGenerator convert_handler = new MusicSearchCommandNativeDataJSON.HoldingGenerator("Type MusicSearchCommandNativeDataJSON");
     new_value.write_as_json(convert_handler);
     setNativeData(convert_handler.value);
 }