Class: Google::Apis::CloudsearchV1::SupportUrls
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::SupportUrls
- 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
Urls with additional bot related information.
Instance Attribute Summary collapse
-
#admin_config_url ⇒ String
Link to the admin configuration webpage for the bot.
-
#deletion_policy_url ⇒ String
Link to the deletion policy webpage for the bot.
-
#gwm_url ⇒ String
Link to GWM page of the app.
-
#privacy_policy_url ⇒ String
Link to the privacy policy webpage for the bot.
-
#setup_url ⇒ String
Link to the setup webpage for the bot.
-
#support_url ⇒ String
Link to the support webpage for the developer of the bot.
-
#tos_url ⇒ String
Link to the terms of service webpage for the bot.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SupportUrls
constructor
A new instance of SupportUrls.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SupportUrls
Returns a new instance of SupportUrls.
19685 19686 19687 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19685 def initialize(**args) update!(**args) end |
Instance Attribute Details
#admin_config_url ⇒ String
Link to the admin configuration webpage for the bot. Configured by Pantheon,
may be empty.
Corresponds to the JSON property adminConfigUrl
19652 19653 19654 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19652 def admin_config_url @admin_config_url end |
#deletion_policy_url ⇒ String
Link to the deletion policy webpage for the bot. Configured by Pantheon, may
be empty.
Corresponds to the JSON property deletionPolicyUrl
19658 19659 19660 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19658 def deletion_policy_url @deletion_policy_url end |
#gwm_url ⇒ String
Link to GWM page of the app. May be empty.
Corresponds to the JSON property gwmUrl
19663 19664 19665 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19663 def gwm_url @gwm_url end |
#privacy_policy_url ⇒ String
Link to the privacy policy webpage for the bot. May be empty.
Corresponds to the JSON property privacyPolicyUrl
19668 19669 19670 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19668 def privacy_policy_url @privacy_policy_url end |
#setup_url ⇒ String
Link to the setup webpage for the bot. Configured by Pantheon, may be empty.
Corresponds to the JSON property setupUrl
19673 19674 19675 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19673 def setup_url @setup_url end |
#support_url ⇒ String
Link to the support webpage for the developer of the bot. May be empty.
Corresponds to the JSON property supportUrl
19678 19679 19680 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19678 def support_url @support_url end |
#tos_url ⇒ String
Link to the terms of service webpage for the bot. May be empty.
Corresponds to the JSON property tosUrl
19683 19684 19685 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19683 def tos_url @tos_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19690 19691 19692 19693 19694 19695 19696 19697 19698 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 19690 def update!(**args) @admin_config_url = args[:admin_config_url] if args.key?(:admin_config_url) @deletion_policy_url = args[:deletion_policy_url] if args.key?(:deletion_policy_url) @gwm_url = args[:gwm_url] if args.key?(:gwm_url) @privacy_policy_url = args[:privacy_policy_url] if args.key?(:privacy_policy_url) @setup_url = args[:setup_url] if args.key?(:setup_url) @support_url = args[:support_url] if args.key?(:support_url) @tos_url = args[:tos_url] if args.key?(:tos_url) end |