Class ListConnectionsResponse
- Namespace
- Vonage.Video.Sessions.ListConnections
- Assembly
- Vonage.dll
public record ListConnectionsResponse : IEquatable<ListConnectionsResponse>
- Inheritance
-
ListConnectionsResponse
- Implements
- Inherited Members
Constructors
ListConnectionsResponse(int, string, string, Connection[])
public ListConnectionsResponse(int Count, string ApplicationId, string SessionId, Connection[] Items)
Parameters
CountintThe total number of connections in the session.
ApplicationIdstringYour Vonage Application ID.
SessionIdstringThe session ID.
ItemsConnection[]The list of connections.
Properties
ApplicationId
Your Vonage Application ID.
[JsonPropertyName("applicationId")]
public string ApplicationId { get; init; }
Property Value
Count
The total number of connections in the session.
[JsonPropertyName("count")]
public int Count { get; init; }
Property Value
Items
The list of connections.
[JsonPropertyName("items")]
public Connection[] Items { get; init; }
Property Value
SessionId
The session ID.
[JsonPropertyName("sessionId")]
public string SessionId { get; init; }