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
BroadcastId
The broadcast Id.
[JsonIgnore]
[Mandatory(1)]
public Guid BroadcastId { get; }
Property Value
Layout
Sets the new layout to apply to the broadcast.
[JsonIgnore]
[Mandatory(2)]
public Layout Layout { get; }
Property Value
Examples
.WithLayout(new Layout(null, null, LayoutType.BestFit))
Methods
Build()
public static IBuilderForApplicationId Build()
Returns
BuildRequestMessage()
Converts the request to a HttpRequest.
public HttpRequestMessage BuildRequestMessage()
Returns
- HttpRequestMessage
The Http request.