Show / Hide Table of Contents

Class SessionStateInfo

Information about the state of a (recording, broadcast, transcription...) session in a conference.

Inheritance
System.Object
SessionStateInfo
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 SessionStateInfo : IDirectResponseSchema

Properties

AckInfo

Output only. The ack info of the session.

Declaration
[JsonProperty("ackInfo")]
public virtual AckInfo AckInfo { get; set; }
Property Value
Type Description
AckInfo

ETag

The ETag of the item.

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

LanguageConfig

Immutable. The language configuration used by this session. When empty, captions will be disabled. It's a required field for transcription sessions.

Declaration
[JsonProperty("languageConfig")]
public virtual LanguageConfig LanguageConfig { get; set; }
Property Value
Type Description
LanguageConfig

LastActorDeviceId

Output only. The device id of the actor is set if the current state is a result of a user action, is empty otherwise.

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

MaxEndTime

Output only. The max end time of the session, at this time the session will be force stopped/terminated. Clients are expected to use this timestamp to warn users about the force stop.

Declaration
[JsonProperty("maxEndTime")]
public virtual object MaxEndTime { get; set; }
Property Value
Type Description
System.Object

SessionState

State of the session.

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

SessionStopReason

Output only. The reason the session was transitioned to STOPPED state.

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

Implements

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