Skip to content

Commit

Permalink
Removed GuestStarSlotUpdate, updated GuestStarGuestUpdate, fixed prop…
Browse files Browse the repository at this point in the history
…erty names
  • Loading branch information
Syzuna committed Oct 30, 2023
1 parent d170e7b commit 12e318a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ public abstract class ChannelGuestStarBase
/// <summary>
/// The user ID of the guest
/// </summary>
public string GuestStarUserId { get; set; } = string.Empty;
public string GuestUserId { get; set; } = string.Empty;
/// <summary>
/// The guest display name
/// </summary>
public string GuestStarUserName { get; set; } = string.Empty;
public string GuestUserName { get; set; } = string.Empty;
/// <summary>
/// The guest login
/// </summary>
public string GuestStarUserLogin { get; set; } = string.Empty;
public string GuestUserLogin { get; set; } = string.Empty;
/// <summary>
/// The ID of the slot assignment the guest is assigned to. null/empty if the guest is in the INVITED state.
/// <para>or the ID of the slot where settings were updated.</para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,20 @@ public class ChannelGuestStarGuestUpdate : ChannelGuestStarBase
/// </para>
/// </summary>
public string State { get; set; } = string.Empty;
/// <summary>
/// Flag that signals whether the host is allowing the slot’s video to be seen by participants within the session.
/// <para>null if the guest is not slotted.</para>
/// </summary>
public bool? HostVideoEnabled { get; set; }
/// <summary>
/// Flag that signals whether the host is allowing the slot’s audio to be heard by participants within the session.
/// <para>null if the guest is not slotted.</para>
/// </summary>
public bool? HostAudioEnabled { get; set; }
/// <summary>
/// Value between 0-100 that represents the slot’s audio level as heard by participants within the session.
/// <para>null if the guest is not slotted.</para>
/// </summary>
public int? HostVolume { get; set; }
}
}

This file was deleted.

0 comments on commit 12e318a

Please sign in to comment.