class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionArticle

Represents suggested article.

Attributes

answer_record[RW]

Output only. The name of answer record, in the format of “projects//locations// answerRecords/” Corresponds to the JSON property `answerRecord` @return [String]

metadata[RW]

Output only. A map that contains metadata about the answer and the document from which it originates. Corresponds to the JSON property `metadata` @return [Hash<String,String>]

snippets[RW]

Output only. Article snippets. Corresponds to the JSON property `snippets` @return [Array<String>]

title[RW]

Output only. The article title. Corresponds to the JSON property `title` @return [String]

uri[RW]

Output only. The article URI. Corresponds to the JSON property `uri` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 13927
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 13932
def update!(**args)
  @answer_record = args[:answer_record] if args.key?(:answer_record)
  @metadata = args[:metadata] if args.key?(:metadata)
  @snippets = args[:snippets] if args.key?(:snippets)
  @title = args[:title] if args.key?(:title)
  @uri = args[:uri] if args.key?(:uri)
end