lib/purecloudplatformclientv2/models/contact.rb in purecloudplatformclientv2-8.0.0 vs lib/purecloudplatformclientv2/models/contact.rb in purecloudplatformclientv2-9.0.0
- old
+ new
@@ -32,26 +32,38 @@
attr_accessor :extension
# Attribute mapping from ruby-style variable name to JSON key.
def self.attribute_map
{
+
:'address' => :'address',
+
:'display' => :'display',
+
:'media_type' => :'mediaType',
+
:'type' => :'type',
+
:'extension' => :'extension'
+
}
end
# Attribute type mapping.
def self.swagger_types
{
+
:'address' => :'String',
+
:'display' => :'String',
+
:'media_type' => :'String',
+
:'type' => :'String',
+
:'extension' => :'String'
+
}
end
# Initializes the object
# @param [Hash] attributes Model attributes in the form of hash
@@ -59,71 +71,146 @@
return unless attributes.is_a?(Hash)
# convert string to symbol for hash key
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
+
if attributes.has_key?(:'address')
+
+
self.address = attributes[:'address']
+
+
end
+
if attributes.has_key?(:'display')
+
+
self.display = attributes[:'display']
+
+
end
+
if attributes.has_key?(:'mediaType')
+
+
self.media_type = attributes[:'mediaType']
+
+
end
+
if attributes.has_key?(:'type')
+
+
self.type = attributes[:'type']
+
+
end
+
if attributes.has_key?(:'extension')
+
+
self.extension = attributes[:'extension']
+
+
end
+
end
# Show invalid properties with the reasons. Usually used together with valid?
# @return Array for valid properies with the reasons
def list_invalid_properties
invalid_properties = Array.new
+
+
return invalid_properties
end
# Check to see if the all the properties in the model are valid
# @return true if the model is valid
def valid?
+
+
+
+
+
+
+
+
+
+
+
allowed_values = ["PHONE", "EMAIL", "SMS"]
if @media_type && !allowed_values.include?(@media_type)
return false
end
+
+
+
+
+
allowed_values = ["PRIMARY", "WORK", "WORK2", "WORK3", "WORK4", "HOME", "MOBILE", "MAIN"]
if @type && !allowed_values.include?(@type)
return false
end
+
+
+
+
+
+
+
end
+
+
+
+
+
+
+
+
+
+
+
+
# Custom attribute writer method checking allowed values (enum).
# @param [Object] media_type Object to be assigned
def media_type=(media_type)
allowed_values = ["PHONE", "EMAIL", "SMS"]
if media_type && !allowed_values.include?(media_type)
fail ArgumentError, "invalid value for 'media_type', must be one of #{allowed_values}."
end
@media_type = media_type
end
+
+
+
+
# Custom attribute writer method checking allowed values (enum).
# @param [Object] type Object to be assigned
def type=(type)
allowed_values = ["PRIMARY", "WORK", "WORK2", "WORK3", "WORK4", "HOME", "MOBILE", "MAIN"]
if type && !allowed_values.include?(type)
fail ArgumentError, "invalid value for 'type', must be one of #{allowed_values}."
end
@type = type
end
+
+
+
+
+
+
+
+
# Checks equality by comparing each attribute.
# @param [Object] Object to be compared
def ==(o)
return true if self.equal?(o)
self.class == o.class &&