Class: Google::Apis::ChatV1::AccessSettings
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::AccessSettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb
Overview
Represents the access setting of the space.
Instance Attribute Summary collapse
-
#access_state ⇒ String
Output only.
-
#audience ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccessSettings
constructor
A new instance of AccessSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AccessSettings
Returns a new instance of AccessSettings.
49 50 51 |
# File 'lib/google/apis/chat_v1/classes.rb', line 49 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_state ⇒ String
Output only. Indicates the access state of the space.
Corresponds to the JSON property accessState
33 34 35 |
# File 'lib/google/apis/chat_v1/classes.rb', line 33 def access_state @access_state end |
#audience ⇒ String
Optional. The resource name of the target audience who can discover the space, join the space, and preview
the messages in the space. If unset, only users or Google Groups who have been
individually invited or added to the space can access it. For details, see
Make a space discoverable to a target audience. Format: audiences/
audience`To use
the default target audience for the Google Workspace organization, set to
audiences/default. This field is not populated when using the
chat.bot
scope with [app authentication](https://developers.google.com/workspace/chat/
authenticate-authorize-chat-app).
Corresponds to the JSON property
audience`
47 48 49 |
# File 'lib/google/apis/chat_v1/classes.rb', line 47 def audience @audience end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
54 55 56 57 |
# File 'lib/google/apis/chat_v1/classes.rb', line 54 def update!(**args) @access_state = args[:access_state] if args.key?(:access_state) @audience = args[:audience] if args.key?(:audience) end |