Table of Contents

Struct ChangeBroadcastLayoutRequest

Namespace
Vonage.Video.Broadcast.ChangeBroadcastLayout
Assembly
Vonage.dll

Represents a request to change a broadcast layout.

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

Properties

ApplicationId

The Vonage Application UUID.

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

Property Value

Guid

BroadcastId

The broadcast Id.

[JsonIgnore]
[Mandatory(1)]
public Guid BroadcastId { get; }

Property Value

Guid

Layout

Sets the new layout to apply to the broadcast.

[JsonIgnore]
[Mandatory(2)]
public Layout Layout { get; }

Property Value

Layout

Examples

.WithLayout(new Layout(null, null, LayoutType.BestFit))

Methods

Build()

public static IBuilderForApplicationId Build()

Returns

IBuilderForApplicationId

BuildRequestMessage()

Converts the request to a HttpRequest.

public HttpRequestMessage BuildRequestMessage()

Returns

HttpRequestMessage

The Http request.