Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationContextReferenceContextContent
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationContextReferenceContextContent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#answer_record ⇒ String
Corresponds to the JSON property
answerRecord. -
#content ⇒ String
Corresponds to the JSON property
content. -
#content_format ⇒ String
Corresponds to the JSON property
contentFormat. -
#ingestion_time ⇒ String
Corresponds to the JSON property
ingestionTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ConversationContextReferenceContextContent
constructor
A new instance of GoogleCloudDialogflowV2beta1ConversationContextReferenceContextContent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ConversationContextReferenceContextContent
Returns a new instance of GoogleCloudDialogflowV2beta1ConversationContextReferenceContextContent.
12485 12486 12487 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12485 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_record ⇒ String
Corresponds to the JSON property answerRecord
12468 12469 12470 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12468 def answer_record @answer_record end |
#content ⇒ String
Corresponds to the JSON property content
12473 12474 12475 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12473 def content @content end |
#content_format ⇒ String
Corresponds to the JSON property contentFormat
12478 12479 12480 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12478 def content_format @content_format end |
#ingestion_time ⇒ String
Corresponds to the JSON property ingestionTime
12483 12484 12485 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12483 def ingestion_time @ingestion_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12490 12491 12492 12493 12494 12495 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12490 def update!(**args) @answer_record = args[:answer_record] if args.key?(:answer_record) @content = args[:content] if args.key?(:content) @content_format = args[:content_format] if args.key?(:content_format) @ingestion_time = args[:ingestion_time] if args.key?(:ingestion_time) end |