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.
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 |
# File 'proto_docs/google/apps/card/v1/card.rb', line 1183 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 |