Class: Google::Apis::MeetV2::SpaceConfig

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

Overview

The configuration pertaining to a meeting space.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SpaceConfig

Returns a new instance of SpaceConfig.



612
613
614
# File 'lib/google/apis/meet_v2/classes.rb', line 612

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

Instance Attribute Details

#access_typeString

Access type of the meeting space that determines who can join without knocking. Default: The user's default access settings. Controlled by the user's admin for enterprise users or RESTRICTED. Corresponds to the JSON property accessType

Returns:

  • (String)


604
605
606
# File 'lib/google/apis/meet_v2/classes.rb', line 604

def access_type
  @access_type
end

#entry_point_accessString

Defines the entry points that can be used to join meetings hosted in this meeting space. Default: EntryPointAccess.ALL Corresponds to the JSON property entryPointAccess

Returns:

  • (String)


610
611
612
# File 'lib/google/apis/meet_v2/classes.rb', line 610

def entry_point_access
  @entry_point_access
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



617
618
619
620
# File 'lib/google/apis/meet_v2/classes.rb', line 617

def update!(**args)
  @access_type = args[:access_type] if args.key?(:access_type)
  @entry_point_access = args[:entry_point_access] if args.key?(:entry_point_access)
end