Struct MuteStreamResponse
- Namespace
- Vonage.Video.Moderation.MuteStream
- Assembly
- Vonage.dll
Represents the response when a stream has been muted.
public struct MuteStreamResponse
- Inherited Members
Constructors
MuteStreamResponse(string, string, string, string, long)
Creates a response.
[JsonConstructor]
public MuteStreamResponse(string applicationId, string status, string name, string environment, long createdAt)
Parameters
applicationIdstringThe Vonage application ID.
statusstringWhether the project is active ("ACTIVE") or suspended ("SUSPENDED").
namestringThe name, if you specified one when creating the project; or an empty string if you did not specify a name.
environmentstringThis is set to "standard" or "enterprise", and it refers to the environment a project is running on. Enterprise package partners have access to the enterprise environment.
createdAtlongThe time at which the project was created (a UNIX timestamp, in milliseconds).
Properties
ApplicationId
The Vonage application ID.
public readonly string ApplicationId { get; }
Property Value
CreatedAt
The time at which the project was created (a UNIX timestamp, in milliseconds).
public readonly long CreatedAt { get; }
Property Value
Environment
This is set to "standard" or "enterprise", and it refers to the environment a project is running on. Enterprise package partners have access to the enterprise environment.
public readonly string Environment { get; }
Property Value
Name
The name, if you specified one when creating the project; or an empty string if you did not specify a name.
public readonly string Name { get; }
Property Value
Status
Whether the project is active ("ACTIVE") or suspended ("SUSPENDED").
public readonly string Status { get; }