Table of Contents

Struct GetSessionsRequest

Namespace
Vonage.Video.ExperienceComposer.GetSessions
Assembly
Vonage.dll

Represents a request to retrieve sessions.

[Builder(new string[] { })]
public readonly struct GetSessionsRequest : IVonageRequest, IHasApplicationId
Implements
Inherited Members

Properties

ApplicationId

The Vonage Application UUID.

[Mandatory(0)]
public Guid ApplicationId { get; }

Property Value

Guid

Count

Sets the maximum number of Experience Composers to return. The default is 50 and the maximum is 1000.

[OptionalWithDefault("int", "50")]
public int Count { get; }

Property Value

int

Examples

.WithCount(100)

Offset

Sets the index offset of the first Experience Composer to return. 0 (the default) is the most recently started Experience Composer.

[OptionalWithDefault("int", "0")]
public int Offset { get; }

Property Value

int

Examples

.WithOffset(10)

Methods

Build()

public static IBuilderForApplicationId Build()

Returns

IBuilderForApplicationId

BuildRequestMessage()

Converts the request to a HttpRequest.

public HttpRequestMessage BuildRequestMessage()

Returns

HttpRequestMessage

The Http request.

GetEndpointPath()

public string GetEndpointPath()

Returns

string