Table of Contents

Struct MuteStreamsResponse

Namespace
Vonage.Video.Moderation.MuteStreams
Assembly
Vonage.dll

Represents the response when streams have been muted.

public struct MuteStreamsResponse
Inherited Members

Constructors

MuteStreamsResponse(string, string, string, string, long)

Creates a response.

[JsonConstructor]
public MuteStreamsResponse(string applicationId, string status, string name, string environment, long createdAt)

Parameters

applicationId string

The Vonage application ID.

status string

Whether the project is active ("ACTIVE") or suspended ("SUSPENDED").

name string

The name, if you specified one when creating the project; or an empty string if you did not specify a name.

environment string

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.

createdAt long

The 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

string

CreatedAt

The time at which the project was created (a UNIX timestamp, in milliseconds).

public readonly long CreatedAt { get; }

Property Value

long

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

string

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

string

Status

Whether the project is active ("ACTIVE") or suspended ("SUSPENDED").

public readonly string Status { get; }

Property Value

string