Class: CyberSource::Boardingv1registrationsOrganizationInformationOwners
- Inherits:
-
Object
- Object
- CyberSource::Boardingv1registrationsOrganizationInformationOwners
- Defined in:
- lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb
Instance Attribute Summary collapse
-
#address ⇒ Object
Returns the value of attribute address.
-
#birth_date ⇒ Object
‘Format: YYYY-MM-DD` Example 2016-08-11 equals August 11, 2016.
-
#email ⇒ Object
Returns the value of attribute email.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#has_significant_responsability ⇒ Object
Determines whether owner has significant responsibility to control, manage or direct the company.
-
#is_primary ⇒ Object
Determines whether the owner is the Primary owner of the organization.
-
#job_title ⇒ Object
Returns the value of attribute job_title.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
-
#middle_name ⇒ Object
Returns the value of attribute middle_name.
-
#ownership_percentage ⇒ Object
Determines the percentage of ownership this owner has.
-
#passport_country ⇒ Object
Returns the value of attribute passport_country.
-
#passport_number ⇒ Object
Passport number.
-
#phone_number ⇒ Object
Returns the value of attribute phone_number.
-
#ssn ⇒ Object
Social Security Number.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.json_map ⇒ Object
Attribute mapping from JSON key to ruby-style variable name.
-
.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 = {}) ⇒ Boardingv1registrationsOrganizationInformationOwners
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 = {}) ⇒ Boardingv1registrationsOrganizationInformationOwners
Initializes the object
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 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 112 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?(:'firstName') self.first_name = attributes[:'firstName'] end if attributes.has_key?(:'middleName') self.middle_name = attributes[:'middleName'] end if attributes.has_key?(:'lastName') self.last_name = attributes[:'lastName'] end if attributes.has_key?(:'birthDate') self.birth_date = attributes[:'birthDate'] end if attributes.has_key?(:'isPrimary') self.is_primary = attributes[:'isPrimary'] end if attributes.has_key?(:'ssn') self.ssn = attributes[:'ssn'] end if attributes.has_key?(:'passportNumber') self.passport_number = attributes[:'passportNumber'] end if attributes.has_key?(:'passportCountry') self.passport_country = attributes[:'passportCountry'] end if attributes.has_key?(:'jobTitle') self.job_title = attributes[:'jobTitle'] end if attributes.has_key?(:'hasSignificantResponsability') self.has_significant_responsability = attributes[:'hasSignificantResponsability'] end if attributes.has_key?(:'ownershipPercentage') self.ownership_percentage = attributes[:'ownershipPercentage'] end if attributes.has_key?(:'phoneNumber') self.phone_number = attributes[:'phoneNumber'] end if attributes.has_key?(:'email') self.email = attributes[:'email'] end if attributes.has_key?(:'address') self.address = attributes[:'address'] end end |
Instance Attribute Details
#address ⇒ Object
Returns the value of attribute address.
48 49 50 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 48 def address @address end |
#birth_date ⇒ Object
‘Format: YYYY-MM-DD` Example 2016-08-11 equals August 11, 2016
23 24 25 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 23 def birth_date @birth_date end |
#email ⇒ Object
Returns the value of attribute email.
46 47 48 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 46 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name.
16 17 18 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 16 def first_name @first_name end |
#has_significant_responsability ⇒ Object
Determines whether owner has significant responsibility to control, manage or direct the company
39 40 41 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 39 def has_significant_responsability @has_significant_responsability end |
#is_primary ⇒ Object
Determines whether the owner is the Primary owner of the organization
26 27 28 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 26 def is_primary @is_primary end |
#job_title ⇒ Object
Returns the value of attribute job_title.
36 37 38 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 36 def job_title @job_title end |
#last_name ⇒ Object
Returns the value of attribute last_name.
20 21 22 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 20 def last_name @last_name end |
#middle_name ⇒ Object
Returns the value of attribute middle_name.
18 19 20 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 18 def middle_name @middle_name end |
#ownership_percentage ⇒ Object
Determines the percentage of ownership this owner has. For the primary owner the percentage can be from 0-100; for other owners the percentage can be from 25-100 and the sum of ownership accross owners cannot exceed 100
42 43 44 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 42 def ownership_percentage @ownership_percentage end |
#passport_country ⇒ Object
Returns the value of attribute passport_country.
34 35 36 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 34 def passport_country @passport_country end |
#passport_number ⇒ Object
Passport number
32 33 34 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 32 def passport_number @passport_number end |
#phone_number ⇒ Object
Returns the value of attribute phone_number.
44 45 46 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 44 def phone_number @phone_number end |
#ssn ⇒ Object
Social Security Number
29 30 31 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 29 def ssn @ssn end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 51 def self.attribute_map { :'first_name' => :'firstName', :'middle_name' => :'middleName', :'last_name' => :'lastName', :'birth_date' => :'birthDate', :'is_primary' => :'isPrimary', :'ssn' => :'ssn', :'passport_number' => :'passportNumber', :'passport_country' => :'passportCountry', :'job_title' => :'jobTitle', :'has_significant_responsability' => :'hasSignificantResponsability', :'ownership_percentage' => :'ownershipPercentage', :'phone_number' => :'phoneNumber', :'email' => :'email', :'address' => :'address' } end |
.json_map ⇒ Object
Attribute mapping from JSON key to ruby-style variable name.
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 71 def self.json_map { :'first_name' => :'first_name', :'middle_name' => :'middle_name', :'last_name' => :'last_name', :'birth_date' => :'birth_date', :'is_primary' => :'is_primary', :'ssn' => :'ssn', :'passport_number' => :'passport_number', :'passport_country' => :'passport_country', :'job_title' => :'job_title', :'has_significant_responsability' => :'has_significant_responsability', :'ownership_percentage' => :'ownership_percentage', :'phone_number' => :'phone_number', :'email' => :'email', :'address' => :'address' } end |
.swagger_types ⇒ Object
Attribute type mapping.
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 91 def self.swagger_types { :'first_name' => :'String', :'middle_name' => :'String', :'last_name' => :'String', :'birth_date' => :'Date', :'is_primary' => :'BOOLEAN', :'ssn' => :'String', :'passport_number' => :'String', :'passport_country' => :'String', :'job_title' => :'String', :'has_significant_responsability' => :'BOOLEAN', :'ownership_percentage' => :'Float', :'phone_number' => :'String', :'email' => :'String', :'address' => :'Boardingv1registrationsOrganizationInformationBusinessInformationAddress' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 395 def ==(o) return true if self.equal?(o) self.class == o.class && first_name == o.first_name && middle_name == o.middle_name && last_name == o.last_name && birth_date == o.birth_date && is_primary == o.is_primary && ssn == o.ssn && passport_number == o.passport_number && passport_country == o.passport_country && job_title == o.job_title && has_significant_responsability == o.has_significant_responsability && ownership_percentage == o.ownership_percentage && phone_number == o.phone_number && email == o.email && address == o.address end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 450 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 temp_model = CyberSource.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
516 517 518 519 520 521 522 523 524 525 526 527 528 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 516 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
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 429 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{self.class.json_map[key]}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{self.class.json_map[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
416 417 418 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 416 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
422 423 424 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 422 def hash [first_name, middle_name, last_name, birth_date, is_primary, ssn, passport_number, passport_country, job_title, has_significant_responsability, ownership_percentage, phone_number, email, address].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 177 def list_invalid_properties invalid_properties = Array.new if @first_name.nil? invalid_properties.push('invalid value for "first_name", first_name cannot be nil.') end #if @first_name !~ Regexp.new(/[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/) #invalid_properties.push('invalid value for "first_name", must conform to the pattern /[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/.') #end #if !@middle_name.nil? && @middle_name !~ Regexp.new(/[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/) #invalid_properties.push('invalid value for "middle_name", must conform to the pattern /[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/.') #end if @last_name.nil? invalid_properties.push('invalid value for "last_name", last_name cannot be nil.') end #if @last_name !~ Regexp.new(/[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/) #invalid_properties.push('invalid value for "last_name", must conform to the pattern /[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/.') #end if @birth_date.nil? invalid_properties.push('invalid value for "birth_date", birth_date cannot be nil.') end if @is_primary.nil? invalid_properties.push('invalid value for "is_primary", is_primary cannot be nil.') end #if [email protected]? && @ssn !~ Regexp.new(/^\\d{3}-\\d{2}-\\d{4}$|^\\d{9,9}$/) #invalid_properties.push('invalid value for "ssn", must conform to the pattern /^\\d{3}-\\d{2}-\\d{4}$|^\\d{9,9}$/.') #end #if !@passport_number.nil? && @passport_number !~ Regexp.new(/^(?!^0+$)[a-zA-Z0-9]{3,20}$/) #invalid_properties.push('invalid value for "passport_number", must conform to the pattern /^(?!^0+$)[a-zA-Z0-9]{3,20}$/.') #end #if !@passport_country.nil? && @passport_country !~ Regexp.new(/^[À-ÖØ-öø-ǿa-zA-Z0-9().\\-_#,;\/@$:!% ]{1,}$/) #invalid_properties.push('invalid value for "passport_country", must conform to the pattern /^[À-ÖØ-öø-ǿa-zA-Z0-9().\\-_#,;\/@$:!% ]{1,}$/.') #end if @job_title.nil? invalid_properties.push('invalid value for "job_title", job_title cannot be nil.') end #if @job_title !~ Regexp.new(/^[À-ÖØ-öø-ǿa-zA-Z0-9().\\-_#,;\/@$:!% ]{1,}$/) #invalid_properties.push('invalid value for "job_title", must conform to the pattern /^[À-ÖØ-öø-ǿa-zA-Z0-9().\\-_#,;\/@$:!% ]{1,}$/.') #end if @has_significant_responsability.nil? invalid_properties.push('invalid value for "has_significant_responsability", has_significant_responsability cannot be nil.') end if @ownership_percentage.nil? invalid_properties.push('invalid value for "ownership_percentage", ownership_percentage cannot be nil.') end if @phone_number.nil? invalid_properties.push('invalid value for "phone_number", phone_number cannot be nil.') end #if @phone_number !~ Regexp.new(/^[0-9a-zA-Z\\\\+\\\\-]+$/) #invalid_properties.push('invalid value for "phone_number", must conform to the pattern /^[0-9a-zA-Z\\\\+\\\\-]+$/.') #end if @email.nil? invalid_properties.push('invalid value for "email", email cannot be nil.') end #if @email !~ Regexp.new(/^([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,50}|[0-9]{1,3})(\\]?)$/) #invalid_properties.push('invalid value for "email", must conform to the pattern /^([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,50}|[0-9]{1,3})(\\]?)$/.') #end if @address.nil? invalid_properties.push('invalid value for "address", address cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
496 497 498 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 496 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
502 503 504 505 506 507 508 509 510 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 502 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 |
#to_s ⇒ String
Returns the string representation of the object
490 491 492 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 490 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
# File 'lib/cybersource_rest_client/models/boardingv1registrations_organization_information_owners.rb', line 260 def valid? return false if @first_name.nil? #return false if @first_name !~ Regexp.new(/[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/) #return false if !@middle_name.nil? && @middle_name !~ Regexp.new(/[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/) return false if @last_name.nil? #return false if @last_name !~ Regexp.new(/[À-ÖØ-öø-ǿÀ-ÖØ-öø-ǿa-zA-Z().\\-_#,;\/\\\\@$:&!?%«»€₣«»€₣ ]{1,}$/) return false if @birth_date.nil? return false if @is_primary.nil? #return false if [email protected]? && @ssn !~ Regexp.new(/^\\d{3}-\\d{2}-\\d{4}$|^\\d{9,9}$/) #return false if !@passport_number.nil? && @passport_number !~ Regexp.new(/^(?!^0+$)[a-zA-Z0-9]{3,20}$/) #return false if !@passport_country.nil? && @passport_country !~ Regexp.new(/^[À-ÖØ-öø-ǿa-zA-Z0-9().\\-_#,;\/@$:!% ]{1,}$/) return false if @job_title.nil? #return false if @job_title !~ Regexp.new(/^[À-ÖØ-öø-ǿa-zA-Z0-9().\\-_#,;\/@$:!% ]{1,}$/) return false if @has_significant_responsability.nil? return false if @ownership_percentage.nil? return false if @phone_number.nil? #return false if @phone_number !~ Regexp.new(/^[0-9a-zA-Z\\\\+\\\\-]+$/) return false if @email.nil? #return false if @email !~ Regexp.new(/^([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,50}|[0-9]{1,3})(\\]?)$/) return false if @address.nil? true end |