Class: MailSlurpClient::DeliverabilityEntityResultDto
- Inherits:
-
Object
- Object
- MailSlurpClient::DeliverabilityEntityResultDto
- Defined in:
- lib/mailslurp_client/models/deliverability_entity_result_dto.rb
Overview
Entity-level deliverability result
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#entity_id ⇒ Object
Returns the value of attribute entity_id.
-
#entity_label ⇒ Object
Returns the value of attribute entity_label.
-
#evaluated_at ⇒ Object
Returns the value of attribute evaluated_at.
-
#expectation_results ⇒ Object
Returns the value of attribute expectation_results.
-
#matched ⇒ Object
Returns the value of attribute matched.
-
#matched_expectation_count ⇒ Object
Returns the value of attribute matched_expectation_count.
-
#phone_country ⇒ Object
Returns the value of attribute phone_country.
-
#phone_variant ⇒ Object
Returns the value of attribute phone_variant.
-
#total_expectation_count ⇒ Object
Returns the value of attribute total_expectation_count.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ DeliverabilityEntityResultDto
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ DeliverabilityEntityResultDto
Initializes the object
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 99 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::DeliverabilityEntityResultDto` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::DeliverabilityEntityResultDto`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'entity_id') self.entity_id = attributes[:'entity_id'] end if attributes.key?(:'entity_label') self.entity_label = attributes[:'entity_label'] end if attributes.key?(:'matched') self.matched = attributes[:'matched'] end if attributes.key?(:'matched_expectation_count') self.matched_expectation_count = attributes[:'matched_expectation_count'] end if attributes.key?(:'total_expectation_count') self.total_expectation_count = attributes[:'total_expectation_count'] end if attributes.key?(:'phone_country') self.phone_country = attributes[:'phone_country'] end if attributes.key?(:'phone_variant') self.phone_variant = attributes[:'phone_variant'] end if attributes.key?(:'evaluated_at') self.evaluated_at = attributes[:'evaluated_at'] end if attributes.key?(:'expectation_results') if (value = attributes[:'expectation_results']).is_a?(Array) self.expectation_results = value end end end |
Instance Attribute Details
#entity_id ⇒ Object
Returns the value of attribute entity_id.
18 19 20 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 18 def entity_id @entity_id end |
#entity_label ⇒ Object
Returns the value of attribute entity_label.
20 21 22 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 20 def entity_label @entity_label end |
#evaluated_at ⇒ Object
Returns the value of attribute evaluated_at.
32 33 34 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 32 def evaluated_at @evaluated_at end |
#expectation_results ⇒ Object
Returns the value of attribute expectation_results.
34 35 36 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 34 def expectation_results @expectation_results end |
#matched ⇒ Object
Returns the value of attribute matched.
22 23 24 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 22 def matched @matched end |
#matched_expectation_count ⇒ Object
Returns the value of attribute matched_expectation_count.
24 25 26 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 24 def matched_expectation_count @matched_expectation_count end |
#phone_country ⇒ Object
Returns the value of attribute phone_country.
28 29 30 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 28 def phone_country @phone_country end |
#phone_variant ⇒ Object
Returns the value of attribute phone_variant.
30 31 32 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 30 def phone_variant @phone_variant end |
#total_expectation_count ⇒ Object
Returns the value of attribute total_expectation_count.
26 27 28 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 26 def total_expectation_count @total_expectation_count end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 59 def self.attribute_map { :'entity_id' => :'entityId', :'entity_label' => :'entityLabel', :'matched' => :'matched', :'matched_expectation_count' => :'matchedExpectationCount', :'total_expectation_count' => :'totalExpectationCount', :'phone_country' => :'phoneCountry', :'phone_variant' => :'phoneVariant', :'evaluated_at' => :'evaluatedAt', :'expectation_results' => :'expectationResults' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
249 250 251 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 249 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
89 90 91 92 93 94 95 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 89 def self.openapi_nullable Set.new([ :'phone_country', :'phone_variant', :'evaluated_at', ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 74 def self.openapi_types { :'entity_id' => :'String', :'entity_label' => :'String', :'matched' => :'Boolean', :'matched_expectation_count' => :'Integer', :'total_expectation_count' => :'Integer', :'phone_country' => :'String', :'phone_variant' => :'String', :'evaluated_at' => :'DateTime', :'expectation_results' => :'Array<DeliverabilityExpectationResultDto>' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 220 def ==(o) return true if self.equal?(o) self.class == o.class && entity_id == o.entity_id && entity_label == o.entity_label && matched == o.matched && matched_expectation_count == o.matched_expectation_count && total_expectation_count == o.total_expectation_count && phone_country == o.phone_country && phone_variant == o.phone_variant && evaluated_at == o.evaluated_at && expectation_results == o.expectation_results end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 277 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 =~ /\A(true|t|yes|y|1)\z/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 MailSlurpClient.const_get(type).build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
346 347 348 349 350 351 352 353 354 355 356 357 358 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 346 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_from_hash(attributes) ⇒ Object
Builds the object from hash
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 256 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.openapi_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
236 237 238 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 236 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
242 243 244 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 242 def hash [entity_id, entity_label, matched, matched_expectation_count, total_expectation_count, phone_country, phone_variant, evaluated_at, expectation_results].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 153 def list_invalid_properties invalid_properties = Array.new if @entity_id.nil? invalid_properties.push('invalid value for "entity_id", entity_id cannot be nil.') end if @entity_label.nil? invalid_properties.push('invalid value for "entity_label", entity_label cannot be nil.') end if @matched.nil? invalid_properties.push('invalid value for "matched", matched cannot be nil.') end if @matched_expectation_count.nil? invalid_properties.push('invalid value for "matched_expectation_count", matched_expectation_count cannot be nil.') end if @total_expectation_count.nil? invalid_properties.push('invalid value for "total_expectation_count", total_expectation_count cannot be nil.') end if @expectation_results.nil? invalid_properties.push('invalid value for "expectation_results", expectation_results cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
322 323 324 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 322 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 328 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
316 317 318 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 316 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/mailslurp_client/models/deliverability_entity_result_dto.rb', line 184 def valid? return false if @entity_id.nil? return false if @entity_label.nil? return false if @matched.nil? return false if @matched_expectation_count.nil? return false if @total_expectation_count.nil? phone_country_validator = EnumAttributeValidator.new('String', ["US", "GB", "AU", "CA", "EE", "HK", "PL", "PT", "NL", "IL", "FI", "SE"]) return false unless phone_country_validator.valid?(@phone_country) phone_variant_validator = EnumAttributeValidator.new('String', ["LOCAL", "MOBILE", "TOLL_FREE"]) return false unless phone_variant_validator.valid?(@phone_variant) return false if @expectation_results.nil? true end |