Method: PureCloud::QueueConversationEmailEventTopicEmailConversation#_to_hash

Defined in:
lib/purecloudplatformclientv2/models/queue_conversation_email_event_topic_email_conversation.rb

#_to_hash(value) ⇒ Object

Method to output non-array value in the form of hash For object, use to_hash. Otherwise, just return the value



265
266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/purecloudplatformclientv2/models/queue_conversation_email_event_topic_email_conversation.rb', line 265

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