Table of Contents

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

Count int

The total number of connections in the session.

ApplicationId string

Your Vonage Application ID.

SessionId string

The session ID.

Items Connection[]

The list of connections.

Properties

ApplicationId

Your Vonage Application ID.

[JsonPropertyName("applicationId")]
public string ApplicationId { get; init; }

Property Value

string

Count

The total number of connections in the session.

[JsonPropertyName("count")]
public int Count { get; init; }

Property Value

int

Items

The list of connections.

[JsonPropertyName("items")]
public Connection[] Items { get; init; }

Property Value

Connection[]

SessionId

The session ID.

[JsonPropertyName("sessionId")]
public string SessionId { get; init; }

Property Value

string