Class: Google::Apis::ContactcenteraiplatformV1alpha1::UrIs
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenteraiplatformV1alpha1::UrIs
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb,
lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb,
lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb
Overview
Message storing the URIs of the ContactCenter.
Instance Attribute Summary collapse
-
#chat_bot_uri ⇒ String
Chat Bot Uri of the ContactCenter Corresponds to the JSON property
chatBotUri
. -
#media_uri ⇒ String
Media Uri of the ContactCenter.
-
#root_uri ⇒ String
Root Uri of the ContactCenter.
-
#virtual_agent_streaming_service_uri ⇒ String
Virtual Agent Streaming Service Uri of the ContactCenter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrIs
constructor
A new instance of UrIs.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UrIs
Returns a new instance of UrIs.
903 904 905 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 903 def initialize(**args) update!(**args) end |
Instance Attribute Details
#chat_bot_uri ⇒ String
Chat Bot Uri of the ContactCenter
Corresponds to the JSON property chatBotUri
886 887 888 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 886 def chat_bot_uri @chat_bot_uri end |
#media_uri ⇒ String
Media Uri of the ContactCenter.
Corresponds to the JSON property mediaUri
891 892 893 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 891 def media_uri @media_uri end |
#root_uri ⇒ String
Root Uri of the ContactCenter.
Corresponds to the JSON property rootUri
896 897 898 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 896 def root_uri @root_uri end |
#virtual_agent_streaming_service_uri ⇒ String
Virtual Agent Streaming Service Uri of the ContactCenter.
Corresponds to the JSON property virtualAgentStreamingServiceUri
901 902 903 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 901 def virtual_agent_streaming_service_uri @virtual_agent_streaming_service_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
908 909 910 911 912 913 |
# File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 908 def update!(**args) @chat_bot_uri = args[:chat_bot_uri] if args.key?(:chat_bot_uri) @media_uri = args[:media_uri] if args.key?(:media_uri) @root_uri = args[:root_uri] if args.key?(:root_uri) @virtual_agent_streaming_service_uri = args[:virtual_agent_streaming_service_uri] if args.key?(:virtual_agent_streaming_service_uri) end |