Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ArticleAnswer

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb

Overview

Represents article answer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ArticleAnswer

Returns a new instance of GoogleCloudDialogflowV2ArticleAnswer



64
65
66
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 64

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#answer_recordString

The name of answer record, in the format of "projects//answerRecords/" Corresponds to the JSON property answerRecord

Returns:

  • (String)


33
34
35
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 33

def answer_record
  @answer_record
end

#confidenceFloat

Article match confidence. The system's confidence score that this article is a good match for this converstation, as a value from 0.0 (completely uncertain) to 1.0 (completely certain). Corresponds to the JSON property confidence

Returns:

  • (Float)


41
42
43
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 41

def confidence
  @confidence
end

#metadataHash<String,String>

A map that contains metadata about the answer and the document from which it originates. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,String>)


47
48
49
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 47

def 
  @metadata
end

#snippetsArray<String>

Article snippets. Corresponds to the JSON property snippets

Returns:

  • (Array<String>)


52
53
54
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 52

def snippets
  @snippets
end

#titleString

The article title. Corresponds to the JSON property title

Returns:

  • (String)


57
58
59
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 57

def title
  @title
end

#uriString

The article URI. Corresponds to the JSON property uri

Returns:

  • (String)


62
63
64
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 62

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



69
70
71
72
73
74
75
76
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 69

def update!(**args)
  @answer_record = args[:answer_record] if args.key?(:answer_record)
  @confidence = args[:confidence] if args.key?(:confidence)
  @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