Show / Hide Table of Contents

Class RecordingInfo

This message is deprecated, please use RecordingSessionInfo instead. Information about recording in the current conference.

Inheritance
System.Object
RecordingInfo
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class RecordingInfo : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LatestRecordingEvent

The latest recording event. This can be used by clients to help explain what is going on, why recording stopped, etc. This will always be set if there is or was an active recording, which means there can be latest event when recording is INACTIVE.

Declaration
[JsonProperty("latestRecordingEvent")]
public virtual RecordingEvent LatestRecordingEvent { get; set; }
Property Value
Type Description
RecordingEvent

OwnerDisplayName

The display name of the owner of the recording output. Email notifications about uploaded recordings will also be sent to this owner.

Declaration
[JsonProperty("ownerDisplayName")]
public virtual string OwnerDisplayName { get; set; }
Property Value
Type Description
System.String

ProducerDeviceId

The device resource name of the producer device for the currently active recording. Note that, after the producer drops/leaves the conference, this field will be cleaned up by the server after a delay.

Declaration
[JsonProperty("producerDeviceId")]
public virtual string ProducerDeviceId { get; set; }
Property Value
Type Description
System.String

RecordingApplicationType

The application type of the current active recording. RECORDING_APPLICATION_TYPE_UNSPECIFIED if recording_status is inactive.

Declaration
[JsonProperty("recordingApplicationType")]
public virtual string RecordingApplicationType { get; set; }
Property Value
Type Description
System.String

RecordingId

An identifier for the current recording, if any. This is returned whenever recording_status is either RECORDING_STARTING or RECORDING_STARTED.

Declaration
[JsonProperty("recordingId")]
public virtual string RecordingId { get; set; }
Property Value
Type Description
System.String

RecordingStatus

The current status of the recording. This can be used by clients to show a recording dot or similar to indicated to the user that a recording is taking place.

Declaration
[JsonProperty("recordingStatus")]
public virtual string RecordingStatus { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top