Method: CloudmersiveImageRecognitionApiClient::ImageMetadata#==
- Defined in:
- lib/cloudmersive-image-recognition-api-client/models/image_metadata.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/cloudmersive-image-recognition-api-client/models/image_metadata.rb', line 146 def ==(o) return true if self.equal?(o) self.class == o.class && successful == o.successful && is_valid_image == o.is_valid_image && file_format == o.file_format && width == o.width && height == o.height && bit_depth == o.bit_depth && has_transparency == o.has_transparency && color_space == o.color_space && exif_profile_name == o.exif_profile_name && exif_values == o.exif_values end |