Class: Google::Apis::CloudsearchV1::CallSettings

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

Effective settings of the ongoing conference.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CallSettings

Returns a new instance of CallSettings.



5312
5313
5314
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5312

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#access_lockBoolean Also known as: access_lock?

Indicates whether the access lock is currently on or off. Corresponds to the JSON property accessLock

Returns:

  • (Boolean)


5250
5251
5252
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5250

def access_lock
  @access_lock
end

#access_typeString

The current access type of the conference. Corresponds to the JSON property accessType

Returns:

  • (String)


5256
5257
5258
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5256

def access_type
  @access_type
end

#allow_joining_before_hostBoolean Also known as: allow_joining_before_host?

Whether users can join this conference before a host (Host or Cohost). Corresponds to the JSON property allowJoiningBeforeHost

Returns:

  • (Boolean)


5261
5262
5263
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5261

def allow_joining_before_host
  @allow_joining_before_host
end

#attendance_report_enabledBoolean Also known as: attendance_report_enabled?

Indicates whether the attendance report is currently enabled or disabled. Corresponds to the JSON property attendanceReportEnabled

Returns:

  • (Boolean)


5267
5268
5269
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5267

def attendance_report_enabled
  @attendance_report_enabled
end

#audio_lockBoolean Also known as: audio_lock?

Indicates whether the audio lock is currently on or off. Corresponds to the JSON property audioLock

Returns:

  • (Boolean)


5273
5274
5275
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5273

def audio_lock
  @audio_lock
end

#chat_lockBoolean Also known as: chat_lock?

Indicates whether the chat lock is currently on or off. Corresponds to the JSON property chatLock

Returns:

  • (Boolean)


5279
5280
5281
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5279

def chat_lock
  @chat_lock
end

#cse_enabledBoolean Also known as: cse_enabled?

Whether Client-side Encryption is enabled for this conference. Corresponds to the JSON property cseEnabled

Returns:

  • (Boolean)


5285
5286
5287
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5285

def cse_enabled
  @cse_enabled
end

#moderation_enabledBoolean Also known as: moderation_enabled?

Indicates whether moderation is currently on or off. Corresponds to the JSON property moderationEnabled

Returns:

  • (Boolean)


5291
5292
5293
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5291

def moderation_enabled
  @moderation_enabled
end

#present_lockBoolean Also known as: present_lock?

Indicates whether the present lock is currently on or off. Corresponds to the JSON property presentLock

Returns:

  • (Boolean)


5297
5298
5299
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5297

def present_lock
  @present_lock
end

#reactions_lockBoolean Also known as: reactions_lock?

Indicates whether the reactions lock is currently on or off. Corresponds to the JSON property reactionsLock

Returns:

  • (Boolean)


5303
5304
5305
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5303

def reactions_lock
  @reactions_lock
end

#video_lockBoolean Also known as: video_lock?

Indicates whether the video lock is currently on or off. Corresponds to the JSON property videoLock

Returns:

  • (Boolean)


5309
5310
5311
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5309

def video_lock
  @video_lock
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5317

def update!(**args)
  @access_lock = args[:access_lock] if args.key?(:access_lock)
  @access_type = args[:access_type] if args.key?(:access_type)
  @allow_joining_before_host = args[:allow_joining_before_host] if args.key?(:allow_joining_before_host)
  @attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
  @audio_lock = args[:audio_lock] if args.key?(:audio_lock)
  @chat_lock = args[:chat_lock] if args.key?(:chat_lock)
  @cse_enabled = args[:cse_enabled] if args.key?(:cse_enabled)
  @moderation_enabled = args[:moderation_enabled] if args.key?(:moderation_enabled)
  @present_lock = args[:present_lock] if args.key?(:present_lock)
  @reactions_lock = args[:reactions_lock] if args.key?(:reactions_lock)
  @video_lock = args[:video_lock] if args.key?(:video_lock)
end