Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversation
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
External conversation proto definition.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Output only.
-
#messages ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversationMessage>
Conversation messages.
-
#name ⇒ String
Immutable.
-
#start_time ⇒ String
Output only.
-
#state ⇒ String
The state of the Conversation.
-
#user_pseudo_id ⇒ String
A unique identifier for tracking users.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaConversation
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaConversation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaConversation
Returns a new instance of GoogleCloudDiscoveryengineV1alphaConversation.
4936 4937 4938 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4936 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Output only. The time the conversation finished.
Corresponds to the JSON property endTime
4907 4908 4909 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4907 def end_time @end_time end |
#messages ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversationMessage>
Conversation messages.
Corresponds to the JSON property messages
4912 4913 4914 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4912 def @messages end |
#name ⇒ String
Immutable. Fully qualified name projects/
project/locations/global/
collections/
collection/dataStore/*/conversations/*
or projects/
project/
locations/global/collections/
collection/engines/*/conversations/*
.
Corresponds to the JSON property name
4919 4920 4921 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4919 def name @name end |
#start_time ⇒ String
Output only. The time the conversation started.
Corresponds to the JSON property startTime
4924 4925 4926 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4924 def start_time @start_time end |
#state ⇒ String
The state of the Conversation.
Corresponds to the JSON property state
4929 4930 4931 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4929 def state @state end |
#user_pseudo_id ⇒ String
A unique identifier for tracking users.
Corresponds to the JSON property userPseudoId
4934 4935 4936 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4934 def user_pseudo_id @user_pseudo_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4941 4942 4943 4944 4945 4946 4947 4948 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4941 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @messages = args[:messages] if args.key?(:messages) @name = args[:name] if args.key?(:name) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) @user_pseudo_id = args[:user_pseudo_id] if args.key?(:user_pseudo_id) end |