Class: Google::Apps::Card::V1::SelectionInput::PlatformDataSource
- Inherits:
-
Object
- Object
- Google::Apps::Card::V1::SelectionInput::PlatformDataSource
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/apps/card/v1/card.rb
Overview
For a
SelectionInput widget that uses a
multiselect menu, a data source from Google Workspace. Used to populate
items in a multiselect menu.
Defined Under Namespace
Modules: CommonDataSource
Instance Attribute Summary collapse
-
#common_data_source ⇒ ::Google::Apps::Card::V1::SelectionInput::PlatformDataSource::CommonDataSource
A data source shared by all Google Workspace applications, such as users in a Google Workspace organization.
Instance Attribute Details
#common_data_source ⇒ ::Google::Apps::Card::V1::SelectionInput::PlatformDataSource::CommonDataSource
Returns A data source shared by all Google Workspace applications, such as users in a Google Workspace organization.
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 |
# File 'proto_docs/google/apps/card/v1/card.rb', line 1350 class PlatformDataSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A data source shared by all [Google Workspace # applications] # (https://developers.google.com/workspace/chat/api/reference/rest/v1/HostApp). # # [Google Chat apps](https://developers.google.com/workspace/chat): module CommonDataSource # Default value. Don't use. UNKNOWN = 0 # Google Workspace users. The user can only view and select users from # their Google Workspace organization. USER = 1 end end |