Class: IntegrationApi::ClientVendorRequestDataVO
- Inherits:
-
Object
- Object
- IntegrationApi::ClientVendorRequestDataVO
- Defined in:
- lib/integration_api/models/client_vendor_request_data_vo.rb
Instance Attribute Summary collapse
-
#addresses ⇒ Object
Returns the value of attribute addresses.
-
#business_name ⇒ Object
Returns the value of attribute business_name.
-
#country_of_citizenship ⇒ Object
Returns the value of attribute country_of_citizenship.
-
#date_of_birth ⇒ Object
Returns the value of attribute date_of_birth.
-
#email ⇒ Object
Returns the value of attribute email.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#gender ⇒ Object
Returns the value of attribute gender.
-
#identification_number ⇒ Object
Returns the value of attribute identification_number.
-
#identification_number_type ⇒ Object
Returns the value of attribute identification_number_type.
-
#identifications ⇒ Object
Returns the value of attribute identifications.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#middle_name ⇒ Object
Returns the value of attribute middle_name.
-
#phone_number ⇒ Object
Returns the value of attribute phone_number.
-
#politically_exposed_person ⇒ Object
Returns the value of attribute politically_exposed_person.
-
#prefix ⇒ Object
Returns the value of attribute prefix.
-
#suffix ⇒ Object
Returns the value of attribute suffix.
-
#title ⇒ Object
Returns the value of attribute title.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_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 ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ClientVendorRequestDataVO
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 = {}) ⇒ ClientVendorRequestDataVO
Initializes the object
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 150 151 152 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 181 182 183 184 185 186 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 103 def initialize(attributes = {}) 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?(:'addresses') if (value = attributes[:'addresses']).is_a?(Array) self.addresses = value end end if attributes.has_key?(:'business_name') self.business_name = attributes[:'business_name'] end if attributes.has_key?(:'country_of_citizenship') self.country_of_citizenship = attributes[:'country_of_citizenship'] end if attributes.has_key?(:'date_of_birth') self.date_of_birth = attributes[:'date_of_birth'] end if attributes.has_key?(:'email') self.email = attributes[:'email'] end if attributes.has_key?(:'first_name') self.first_name = attributes[:'first_name'] end if attributes.has_key?(:'gender') self.gender = attributes[:'gender'] end if attributes.has_key?(:'identification_number') self.identification_number = attributes[:'identification_number'] end if attributes.has_key?(:'identification_number_type') self.identification_number_type = attributes[:'identification_number_type'] end if attributes.has_key?(:'identifications') if (value = attributes[:'identifications']).is_a?(Array) self.identifications = value end end if attributes.has_key?(:'last_name') self.last_name = attributes[:'last_name'] end if attributes.has_key?(:'metadata') if (value = attributes[:'metadata']).is_a?(Hash) self. = value end end if attributes.has_key?(:'middle_name') self.middle_name = attributes[:'middle_name'] end if attributes.has_key?(:'phone_number') self.phone_number = attributes[:'phone_number'] end if attributes.has_key?(:'politically_exposed_person') self.politically_exposed_person = attributes[:'politically_exposed_person'] end if attributes.has_key?(:'prefix') self.prefix = attributes[:'prefix'] end if attributes.has_key?(:'suffix') self.suffix = attributes[:'suffix'] end if attributes.has_key?(:'title') self.title = attributes[:'title'] end end |
Instance Attribute Details
#addresses ⇒ Object
Returns the value of attribute addresses.
17 18 19 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 17 def addresses @addresses end |
#business_name ⇒ Object
Returns the value of attribute business_name.
19 20 21 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 19 def business_name @business_name end |
#country_of_citizenship ⇒ Object
Returns the value of attribute country_of_citizenship.
21 22 23 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 21 def country_of_citizenship @country_of_citizenship end |
#date_of_birth ⇒ Object
Returns the value of attribute date_of_birth.
23 24 25 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 23 def date_of_birth @date_of_birth end |
#email ⇒ Object
Returns the value of attribute email.
25 26 27 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 25 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name.
27 28 29 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 27 def first_name @first_name end |
#gender ⇒ Object
Returns the value of attribute gender.
29 30 31 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 29 def gender @gender end |
#identification_number ⇒ Object
Returns the value of attribute identification_number.
31 32 33 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 31 def identification_number @identification_number end |
#identification_number_type ⇒ Object
Returns the value of attribute identification_number_type.
33 34 35 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 33 def identification_number_type @identification_number_type end |
#identifications ⇒ Object
Returns the value of attribute identifications.
35 36 37 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 35 def identifications @identifications end |
#last_name ⇒ Object
Returns the value of attribute last_name.
37 38 39 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 37 def last_name @last_name end |
#metadata ⇒ Object
Returns the value of attribute metadata.
39 40 41 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 39 def @metadata end |
#middle_name ⇒ Object
Returns the value of attribute middle_name.
41 42 43 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 41 def middle_name @middle_name end |
#phone_number ⇒ Object
Returns the value of attribute phone_number.
43 44 45 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 43 def phone_number @phone_number end |
#politically_exposed_person ⇒ Object
Returns the value of attribute politically_exposed_person.
45 46 47 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 45 def politically_exposed_person @politically_exposed_person end |
#prefix ⇒ Object
Returns the value of attribute prefix.
47 48 49 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 47 def prefix @prefix end |
#suffix ⇒ Object
Returns the value of attribute suffix.
49 50 51 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 49 def suffix @suffix end |
#title ⇒ Object
Returns the value of attribute title.
51 52 53 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 51 def title @title end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 54 def self.attribute_map { :'addresses' => :'addresses', :'business_name' => :'business_name', :'country_of_citizenship' => :'country_of_citizenship', :'date_of_birth' => :'date_of_birth', :'email' => :'email', :'first_name' => :'first_name', :'gender' => :'gender', :'identification_number' => :'identification_number', :'identification_number_type' => :'identification_number_type', :'identifications' => :'identifications', :'last_name' => :'last_name', :'metadata' => :'metadata', :'middle_name' => :'middle_name', :'phone_number' => :'phone_number', :'politically_exposed_person' => :'politically_exposed_person', :'prefix' => :'prefix', :'suffix' => :'suffix', :'title' => :'title' } end |
.swagger_types ⇒ Object
Attribute type mapping.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 78 def self.swagger_types { :'addresses' => :'Array<Address>', :'business_name' => :'String', :'country_of_citizenship' => :'String', :'date_of_birth' => :'Date', :'email' => :'String', :'first_name' => :'String', :'gender' => :'String', :'identification_number' => :'String', :'identification_number_type' => :'String', :'identifications' => :'Array<Identification>', :'last_name' => :'String', :'metadata' => :'Hash<String, String>', :'middle_name' => :'String', :'phone_number' => :'String', :'politically_exposed_person' => :'PoliticallyExposedPersonDTO', :'prefix' => :'String', :'suffix' => :'String', :'title' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 203 def ==(o) return true if self.equal?(o) self.class == o.class && addresses == o.addresses && business_name == o.business_name && country_of_citizenship == o.country_of_citizenship && date_of_birth == o.date_of_birth && email == o.email && first_name == o.first_name && gender == o.gender && identification_number == o.identification_number && identification_number_type == o.identification_number_type && identifications == o.identifications && last_name == o.last_name && == o. && middle_name == o.middle_name && phone_number == o.phone_number && politically_exposed_person == o.politically_exposed_person && prefix == o.prefix && suffix == o.suffix && title == o.title end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 261 def _deserialize(type, value) case type.to_sym when :DateTime (value) when :Date (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 temp_model = IntegrationApi.const_get(type).new temp_model.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
326 327 328 329 330 331 332 333 334 335 336 337 338 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 326 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
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 241 def build_from_hash(attributes) self.class.swagger_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
228 229 230 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 228 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
234 235 236 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 234 def hash [addresses, business_name, country_of_citizenship, date_of_birth, email, first_name, gender, identification_number, identification_number_type, identifications, last_name, , middle_name, phone_number, politically_exposed_person, prefix, suffix, title].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
190 191 192 193 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 190 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
307 308 309 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 307 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
313 314 315 316 317 318 319 320 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 313 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
301 302 303 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 301 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
197 198 199 |
# File 'lib/integration_api/models/client_vendor_request_data_vo.rb', line 197 def valid? true end |