Changes
1 changed files (+17/-0)
-
-
@@ -64,9 +64,26 @@ };} }; pub const OutputVolume = struct { type: []const u8, // Completely no idea the range of these numeric values. min: ?i64 = null, max: ?i64 = null, value: ?i64 = null, step: ?f64 = null, is_muted: ?bool = null, }; pub const Output = struct { output_id: []const u8, display_name: []const u8, volume: ?OutputVolume = null, }; pub const Zone = struct { zone_id: []const u8, display_name: []const u8, outputs: []const Output, now_playing: ?NowPlaying = null, state: PlaybackState, is_next_allowed: bool = false,
-