Class: Google::Apis::MeetV2::SpaceConfig
- Inherits:
-
Object
- Object
- Google::Apis::MeetV2::SpaceConfig
- 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
-
#access_type ⇒ String
Access type of the meeting space that determines who can join without knocking.
-
#entry_point_access ⇒ String
Defines the entry points that can be used to join meetings hosted in this meeting space.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SpaceConfig
constructor
A new instance of SpaceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SpaceConfig
Returns a new instance of SpaceConfig.
617 618 619 |
# File 'lib/google/apis/meet_v2/classes.rb', line 617 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_type ⇒ String
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
609 610 611 |
# File 'lib/google/apis/meet_v2/classes.rb', line 609 def access_type @access_type end |
#entry_point_access ⇒ String
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
615 616 617 |
# File 'lib/google/apis/meet_v2/classes.rb', line 615 def entry_point_access @entry_point_access end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
622 623 624 625 |
# File 'lib/google/apis/meet_v2/classes.rb', line 622 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 |