Class: Google::Apis::CloudsearchV1::BotInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::BotInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Bot-specific profile information.
Instance Attribute Summary collapse
-
#app_allowlist_status ⇒ String
Corresponds to the JSON property
appAllowlistStatus
. -
#app_id ⇒ Google::Apis::CloudsearchV1::AppId
Identifier of an App.
-
#bot_avatar_url ⇒ String
URL for the avatar picture of the User in dynamite.
-
#bot_name ⇒ String
Non-unique, user-defined display name of the Bot.
-
#description ⇒ String
Short description for the bot.
-
#developer_name ⇒ String
Name of bot developer.
-
#market_place_banner_url ⇒ String
URL for the banner image in GSuite Market Place.
-
#status ⇒ String
Indicates whether bot is enabled/disabled.
-
#support_home_screen ⇒ Boolean
(also: #support_home_screen?)
If the app supports a home screen.
-
#support_urls ⇒ Google::Apis::CloudsearchV1::SupportUrls
Urls with additional bot related information.
-
#supported_uses ⇒ Array<String>
The supported uses are limited according to the user that made the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BotInfo
constructor
A new instance of BotInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BotInfo
Returns a new instance of BotInfo.
5200 5201 5202 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5200 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_allowlist_status ⇒ String
Corresponds to the JSON property appAllowlistStatus
5143 5144 5145 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5143 def app_allowlist_status @app_allowlist_status end |
#app_id ⇒ Google::Apis::CloudsearchV1::AppId
Identifier of an App.
Corresponds to the JSON property appId
5148 5149 5150 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5148 def app_id @app_id end |
#bot_avatar_url ⇒ String
URL for the avatar picture of the User in dynamite. This field should be
populated if the request is FetchBotCategories/ListBotCatalogEntries
Corresponds to the JSON property botAvatarUrl
5154 5155 5156 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5154 def bot_avatar_url @bot_avatar_url end |
#bot_name ⇒ String
Non-unique, user-defined display name of the Bot. This field should be
populated if the request is FetchBotCategories/ListBotCatalogEntries.
Corresponds to the JSON property botName
5160 5161 5162 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5160 def bot_name @bot_name end |
#description ⇒ String
Short description for the bot.
Corresponds to the JSON property description
5165 5166 5167 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5165 def description @description end |
#developer_name ⇒ String
Name of bot developer.
Corresponds to the JSON property developerName
5170 5171 5172 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5170 def developer_name @developer_name end |
#market_place_banner_url ⇒ String
URL for the banner image in GSuite Market Place. The banner will be 220x140.
Corresponds to the JSON property marketPlaceBannerUrl
5175 5176 5177 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5175 def @market_place_banner_url end |
#status ⇒ String
Indicates whether bot is enabled/disabled.
Corresponds to the JSON property status
5180 5181 5182 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5180 def status @status end |
#support_home_screen ⇒ Boolean Also known as: support_home_screen?
If the app supports a home screen.
Corresponds to the JSON property supportHomeScreen
5185 5186 5187 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5185 def support_home_screen @support_home_screen end |
#support_urls ⇒ Google::Apis::CloudsearchV1::SupportUrls
Urls with additional bot related information.
Corresponds to the JSON property supportUrls
5191 5192 5193 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5191 def support_urls @support_urls end |
#supported_uses ⇒ Array<String>
The supported uses are limited according to the user that made the request. If
the user does not have permission to use the bot, the list will be empty. This
could occur for non whitelisted bots in the catalog.
Corresponds to the JSON property supportedUses
5198 5199 5200 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5198 def supported_uses @supported_uses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5205 def update!(**args) @app_allowlist_status = args[:app_allowlist_status] if args.key?(:app_allowlist_status) @app_id = args[:app_id] if args.key?(:app_id) @bot_avatar_url = args[:bot_avatar_url] if args.key?(:bot_avatar_url) @bot_name = args[:bot_name] if args.key?(:bot_name) @description = args[:description] if args.key?(:description) @developer_name = args[:developer_name] if args.key?(:developer_name) @market_place_banner_url = args[:market_place_banner_url] if args.key?(:market_place_banner_url) @status = args[:status] if args.key?(:status) @support_home_screen = args[:support_home_screen] if args.key?(:support_home_screen) @support_urls = args[:support_urls] if args.key?(:support_urls) @supported_uses = args[:supported_uses] if args.key?(:supported_uses) end |