class PureCloud::Annotation
Attributes
A modifier to the evaluation score when the phrase is spotted in the agent channel.
Actual confidence that this is an accurate match.
A modifier to the evaluation score when the phrase is spotted in the customer channel.
Text of annotation.
Duration of annotation in milliseconds.
The globally unique identifier for the object.
Configured sensitivity threshold that can be increased to lower false positives or decreased to reduce false negatives.
The word or phrase which is being looked for with speech recognition.
A unique identifier for the keyword set to which this spotted keyword belongs.
The keyword set to which this spotted keyword belongs.
Offset of annotation in milliseconds.
The URI for this object
Beginning time offset of the keyword spot match.
Ending time offset of the keyword spot match.
User
that created this annotation (if any).
The phonetic spellings for the phrase and alternate spellings.
Public Class Methods
Attribute
mapping from ruby-style variable name to JSON key.
# File lib/purecloud/models/annotation.rb, line 74 def self.attribute_map { :'id' => :'id', :'name' => :'name', :'type' => :'type', :'location' => :'location', :'duration_ms' => :'durationMs', :'user' => :'user', :'description' => :'description', :'keyword_name' => :'keywordName', :'confidence' => :'confidence', :'keyword_set_id' => :'keywordSetId', :'keyword_set_name' => :'keywordSetName', :'utterance' => :'utterance', :'time_begin' => :'timeBegin', :'time_end' => :'timeEnd', :'keyword_confidence_threshold' => :'keywordConfidenceThreshold', :'agent_score_modifier' => :'agentScoreModifier', :'customer_score_modifier' => :'customerScoreModifier', :'self_uri' => :'selfUri' } end
# File lib/purecloud/models/annotation.rb, line 141 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo} if attributes[:'id'] self.id = attributes[:'id'] end if attributes[:'name'] self.name = attributes[:'name'] end if attributes[:'type'] self.type = attributes[:'type'] end if attributes[:'location'] self.location = attributes[:'location'] end if attributes[:'durationMs'] self.duration_ms = attributes[:'durationMs'] end if attributes[:'user'] self.user = attributes[:'user'] end if attributes[:'description'] self.description = attributes[:'description'] end if attributes[:'keywordName'] self.keyword_name = attributes[:'keywordName'] end if attributes[:'confidence'] self.confidence = attributes[:'confidence'] end if attributes[:'keywordSetId'] self.keyword_set_id = attributes[:'keywordSetId'] end if attributes[:'keywordSetName'] self.keyword_set_name = attributes[:'keywordSetName'] end if attributes[:'utterance'] self.utterance = attributes[:'utterance'] end if attributes[:'timeBegin'] self.time_begin = attributes[:'timeBegin'] end if attributes[:'timeEnd'] self.time_end = attributes[:'timeEnd'] end if attributes[:'keywordConfidenceThreshold'] self.keyword_confidence_threshold = attributes[:'keywordConfidenceThreshold'] end if attributes[:'agentScoreModifier'] self.agent_score_modifier = attributes[:'agentScoreModifier'] end if attributes[:'customerScoreModifier'] self.customer_score_modifier = attributes[:'customerScoreModifier'] end if attributes[:'selfUri'] self.self_uri = attributes[:'selfUri'] end end
Attribute
type mapping.
# File lib/purecloud/models/annotation.rb, line 117 def self.swagger_types { :'id' => :'String', :'name' => :'String', :'type' => :'String', :'location' => :'Integer', :'duration_ms' => :'Integer', :'user' => :'User', :'description' => :'String', :'keyword_name' => :'String', :'confidence' => :'Float', :'keyword_set_id' => :'String', :'keyword_set_name' => :'String', :'utterance' => :'String', :'time_begin' => :'String', :'time_end' => :'String', :'keyword_confidence_threshold' => :'String', :'agent_score_modifier' => :'String', :'customer_score_modifier' => :'String', :'self_uri' => :'String' } end
Public Instance Methods
Check equality by comparing each attribute.
# File lib/purecloud/models/annotation.rb, line 223 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && name == o.name && type == o.type && location == o.location && duration_ms == o.duration_ms && user == o.user && description == o.description && keyword_name == o.keyword_name && confidence == o.confidence && keyword_set_id == o.keyword_set_id && keyword_set_name == o.keyword_set_name && utterance == o.utterance && time_begin == o.time_begin && time_end == o.time_end && keyword_confidence_threshold == o.keyword_confidence_threshold && agent_score_modifier == o.agent_score_modifier && customer_score_modifier == o.customer_score_modifier && self_uri == o.self_uri end
# File lib/purecloud/models/annotation.rb, line 276 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /^(true|t|yes|y|1)$/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model _model = Object.const_get("PureCloud").const_get(type).new _model.build_from_hash(value) end end
Method to output non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
# File lib/purecloud/models/annotation.rb, line 336 def _to_hash(value) if value.is_a?(Array) value.compact.map{ |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end
build the object from hash
# File lib/purecloud/models/annotation.rb, line 257 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } ) else #TODO show warning in debug mode end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) else # data not found in attributes(hash), not an issue as the data can be optional end end self end
@see the `==` method
# File lib/purecloud/models/annotation.rb, line 247 def eql?(o) self == o end
Calculate hash code according to all attributes.
# File lib/purecloud/models/annotation.rb, line 252 def hash [id, name, type, location, duration_ms, user, description, keyword_name, confidence, keyword_set_id, keyword_set_name, utterance, time_begin, time_end, keyword_confidence_threshold, agent_score_modifier, customer_score_modifier, self_uri].hash end
return the object in the form of hash
# File lib/purecloud/models/annotation.rb, line 324 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end
# File lib/purecloud/models/annotation.rb, line 314 def to_s to_hash.to_s end