Class: Google::Cloud::ContactCenterInsights::V1::QaAnswer::AnswerSource

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/contactcenterinsights/v1/resources.rb

Overview

A question may have multiple answers from varying sources, one of which becomes the "main" answer above. AnswerSource represents each individual answer.

Defined Under Namespace

Modules: SourceType

Instance Attribute Summary collapse

Instance Attribute Details

#answer_value::Google::Cloud::ContactCenterInsights::V1::QaAnswer::AnswerValue

Returns The answer value from this source.

Returns:



2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
# File 'proto_docs/google/cloud/contactcenterinsights/v1/resources.rb', line 2049

class AnswerSource
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # What created the answer.
  module SourceType
    # Source type is unspecified.
    SOURCE_TYPE_UNSPECIFIED = 0

    # Answer was system-generated; created during an Insights analysis.
    SYSTEM_GENERATED = 1

    # Answer was created by a human via manual edit.
    MANUAL_EDIT = 2
  end
end

#source_type::Google::Cloud::ContactCenterInsights::V1::QaAnswer::AnswerSource::SourceType

Returns What created the answer.



2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
# File 'proto_docs/google/cloud/contactcenterinsights/v1/resources.rb', line 2049

class AnswerSource
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # What created the answer.
  module SourceType
    # Source type is unspecified.
    SOURCE_TYPE_UNSPECIFIED = 0

    # Answer was system-generated; created during an Insights analysis.
    SYSTEM_GENERATED = 1

    # Answer was created by a human via manual edit.
    MANUAL_EDIT = 2
  end
end