require 'date' module PureCloud class Gistener # The globally unique identifier for the object. attr_accessor :id attr_accessor :name # Creation date for the entity. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ attr_accessor :date_created # Date the entity was last modified. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ attr_accessor :date_modified # Indicates if this Gistener may be utilized on another entity attr_accessor :enabled # A tweet must contain any one of these words attr_accessor :any_words # A tweet must contain every one of these words in any order attr_accessor :all_words # If a tweet contains any one of these words, it is thrown out attr_accessor :exclude_words # A tweet must contain this exact quoted phrase attr_accessor :exact_phrase # The group tags associated with this Gistener attr_accessor :group_tags # The social account associated with this Gistener attr_accessor :social_account # The operator queue the gistener will route to. attr_accessor :queue # The URI for this object attr_accessor :self_uri # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'id' => :'id', :'name' => :'name', :'date_created' => :'dateCreated', :'date_modified' => :'dateModified', :'enabled' => :'enabled', :'any_words' => :'anyWords', :'all_words' => :'allWords', :'exclude_words' => :'excludeWords', :'exact_phrase' => :'exactPhrase', :'group_tags' => :'groupTags', :'social_account' => :'socialAccount', :'queue' => :'queue', :'self_uri' => :'selfUri' } end # Attribute type mapping. def self.swagger_types { :'id' => :'String', :'name' => :'String', :'date_created' => :'DateTime', :'date_modified' => :'DateTime', :'enabled' => :'BOOLEAN', :'any_words' => :'String', :'all_words' => :'String', :'exclude_words' => :'String', :'exact_phrase' => :'String', :'group_tags' => :'Array', :'social_account' => :'SocialAccount', :'queue' => :'Queue', :'self_uri' => :'String' } end 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[:'dateCreated'] self.date_created = attributes[:'dateCreated'] end if attributes[:'dateModified'] self.date_modified = attributes[:'dateModified'] end if attributes[:'enabled'] self.enabled = attributes[:'enabled'] else self.enabled = false end if attributes[:'anyWords'] self.any_words = attributes[:'anyWords'] end if attributes[:'allWords'] self.all_words = attributes[:'allWords'] end if attributes[:'excludeWords'] self.exclude_words = attributes[:'excludeWords'] end if attributes[:'exactPhrase'] self.exact_phrase = attributes[:'exactPhrase'] end if attributes[:'groupTags'] if (value = attributes[:'groupTags']).is_a?(Array) self.group_tags = value end end if attributes[:'socialAccount'] self.social_account = attributes[:'socialAccount'] end if attributes[:'queue'] self.queue = attributes[:'queue'] end if attributes[:'selfUri'] self.self_uri = attributes[:'selfUri'] end end # Check equality by comparing each attribute. def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && name == o.name && date_created == o.date_created && date_modified == o.date_modified && enabled == o.enabled && any_words == o.any_words && all_words == o.all_words && exclude_words == o.exclude_words && exact_phrase == o.exact_phrase && group_tags == o.group_tags && social_account == o.social_account && queue == o.queue && self_uri == o.self_uri end # @see the `==` method def eql?(o) self == o end # Calculate hash code according to all attributes. def hash [id, name, date_created, date_modified, enabled, any_words, all_words, exclude_words, exact_phrase, group_tags, social_account, queue, self_uri].hash end # build the object from hash 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 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 =~ /^(true|t|yes|y|1)$/i true else false end when /\AArray<(?.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?.+), (?.+)>\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 def to_s to_hash.to_s end # to_body is an alias to to_body (backward compatibility)) def to_body to_hash end # return the object in the form of hash 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 # Method to output non-array value in the form of hash # For object, use to_hash. Otherwise, just return the value 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 end end