Show / Hide Table of Contents

Class Settings

Settings of a meeting space that can be edited by users with corresponding manage privilege. These settings are always populated in responses.

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

Properties

AccessLock

The access lock of the meeting space that lets hosts control who can join the meeting.

Declaration
[JsonProperty("accessLock")]
public virtual bool? AccessLock { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

AccessType

The access type of the meeting space.

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

AllowJoiningBeforeHost

Whether users can join before host in the conferences of this meeting space.

Declaration
[JsonProperty("allowJoiningBeforeHost")]
public virtual bool? AllowJoiningBeforeHost { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

AttendanceReportEnabled

Whether attendance report is enabled for the meeting space.

Declaration
[JsonProperty("attendanceReportEnabled")]
public virtual bool? AttendanceReportEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ChatLock

The chat lock of the meeting space that lets owner control whether the participants can send chat messages.

Declaration
[JsonProperty("chatLock")]
public virtual bool? ChatLock { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CohostArtifactSharingEnabled

Whether meeting artifacts will be shared with cohosts.

Declaration
[JsonProperty("cohostArtifactSharingEnabled")]
public virtual bool? CohostArtifactSharingEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CseEnabled

Whether Client-side Encryption is enabled for the meeting space.

Declaration
[JsonProperty("cseEnabled")]
public virtual bool? CseEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DefaultAsViewer

Whether the default role is viewer or not.

Declaration
[JsonProperty("defaultAsViewer")]
public virtual bool? DefaultAsViewer { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

ModerationEnabled

Indicates whether the meeting space is moderated.

Declaration
[JsonProperty("moderationEnabled")]
public virtual bool? ModerationEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

PresentLock

The present lock of the meeting space that lets owner control whether the participants can present their screen.

Declaration
[JsonProperty("presentLock")]
public virtual bool? PresentLock { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ReactionsLock

The reactions lock of the meeting space that lets owner control whether the participants can send reactions.

Declaration
[JsonProperty("reactionsLock")]
public virtual bool? ReactionsLock { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

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