Class: OpenapiClient::TeleCheckAchPaymentMethodAchBillTo
- Inherits:
-
Object
- Object
- OpenapiClient::TeleCheckAchPaymentMethodAchBillTo
- Defined in:
- lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb
Overview
Billing details for telecheck transactions.
Instance Attribute Summary collapse
-
#address_one ⇒ Object
Customer billing address, first line.
-
#address_two ⇒ Object
Customer billing address, second line.
-
#city ⇒ Object
Customer billing city.
-
#country_code ⇒ Object
ISO country code.
-
#email ⇒ Object
Customer billing email.
-
#first_name ⇒ Object
Customer billing first name.
-
#last_name ⇒ Object
Customer billing last name.
-
#phone ⇒ Object
Customer billing phone number.
-
#state ⇒ Object
Customer billing state.
-
#zip ⇒ Object
Customer billing zip code.
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_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, attribute_map = self.class.attribute_map, openapi_types = self.class.openapi_types) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ TeleCheckAchPaymentMethodAchBillTo
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(attribute_map = self.class.attribute_map, openapi_nullable = Set.new([])) ⇒ 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 = {}) ⇒ TeleCheckAchPaymentMethodAchBillTo
Initializes the object
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 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 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 82 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `OpenapiClient::TeleCheckAchPaymentMethodAchBillTo` 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 `OpenapiClient::TeleCheckAchPaymentMethodAchBillTo`. 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?(:'first_name') self.first_name = attributes[:'first_name'] end if attributes.key?(:'last_name') self.last_name = attributes[:'last_name'] end if attributes.key?(:'address_one') self.address_one = attributes[:'address_one'] end if attributes.key?(:'address_two') self.address_two = attributes[:'address_two'] end if attributes.key?(:'city') self.city = attributes[:'city'] end if attributes.key?(:'state') self.state = attributes[:'state'] end if attributes.key?(:'zip') self.zip = attributes[:'zip'] end if attributes.key?(:'phone') self.phone = attributes[:'phone'] end if attributes.key?(:'email') self.email = attributes[:'email'] end if attributes.key?(:'country_code') self.country_code = attributes[:'country_code'] end end |
Instance Attribute Details
#address_one ⇒ Object
Customer billing address, first line.
25 26 27 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 25 def address_one @address_one end |
#address_two ⇒ Object
Customer billing address, second line.
28 29 30 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 28 def address_two @address_two end |
#city ⇒ Object
Customer billing city.
31 32 33 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 31 def city @city end |
#country_code ⇒ Object
ISO country code. Required if performing an ICA transaction.
46 47 48 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 46 def country_code @country_code end |
#email ⇒ Object
Customer billing email. Required if performing an ICA transaction.
43 44 45 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 43 def email @email end |
#first_name ⇒ Object
Customer billing first name.
19 20 21 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 19 def first_name @first_name end |
#last_name ⇒ Object
Customer billing last name.
22 23 24 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 22 def last_name @last_name end |
#phone ⇒ Object
Customer billing phone number.
40 41 42 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 40 def phone @phone end |
#state ⇒ Object
Customer billing state.
34 35 36 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 34 def state @state end |
#zip ⇒ Object
Customer billing zip code.
37 38 39 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 37 def zip @zip end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 49 def self.attribute_map { :'first_name' => :'firstName', :'last_name' => :'lastName', :'address_one' => :'addressOne', :'address_two' => :'addressTwo', :'city' => :'city', :'state' => :'state', :'zip' => :'zip', :'phone' => :'phone', :'email' => :'email', :'country_code' => :'countryCode' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
495 496 497 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 495 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_types ⇒ Object
Attribute type mapping.
65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 65 def self.openapi_types { :'first_name' => :'String', :'last_name' => :'String', :'address_one' => :'String', :'address_two' => :'String', :'city' => :'String', :'state' => :'String', :'zip' => :'String', :'phone' => :'String', :'email' => :'String', :'country_code' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
465 466 467 468 469 470 471 472 473 474 475 476 477 478 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 465 def ==(o) return true if self.equal?(o) self.class == o.class && first_name == o.first_name && last_name == o.last_name && address_one == o.address_one && address_two == o.address_two && city == o.city && state == o.state && zip == o.zip && phone == o.phone && email == o.email && country_code == o.country_code end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 523 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 klass = OpenapiClient.const_get(type) if klass.respond_to?(:openapi_discriminator_name) klass = OpenapiClient.const_get(value[klass.attribute_map[klass.openapi_discriminator_name]]) end klass.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
597 598 599 600 601 602 603 604 605 606 607 608 609 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 597 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, attribute_map = self.class.attribute_map, openapi_types = self.class.openapi_types) ⇒ Object
Builds the object from hash
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 502 def build_from_hash(attributes, attribute_map = self.class.attribute_map, openapi_types = self.class.openapi_types) return nil unless attributes.is_a?(Hash) 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[attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[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
482 483 484 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 482 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
488 489 490 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 488 def hash [first_name, last_name, address_one, address_two, city, state, zip, phone, email, country_code].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
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 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 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 138 def list_invalid_properties invalid_properties = Array.new if !@first_name.nil? && @first_name.to_s.length > 30 invalid_properties.push('invalid value for "first_name", the character length must be smaller than or equal to 30.') end pattern = Regexp.new(/(?=.*[^\s])^[^|]+$/) if !@first_name.nil? && @first_name !~ pattern invalid_properties.push("invalid value for \"first_name\", must conform to the pattern #{pattern}.") end if @last_name.nil? invalid_properties.push('invalid value for "last_name", last_name cannot be nil.') end if @last_name.to_s.length > 30 invalid_properties.push('invalid value for "last_name", the character length must be smaller than or equal to 30.') end pattern = Regexp.new(/(?=.*[^\s])^[^|]+$/) if @last_name !~ pattern invalid_properties.push("invalid value for \"last_name\", must conform to the pattern #{pattern}.") end if @address_one.nil? invalid_properties.push('invalid value for "address_one", address_one cannot be nil.') end if @address_one.to_s.length > 50 invalid_properties.push('invalid value for "address_one", the character length must be smaller than or equal to 50.') end pattern = Regexp.new(/(?=.*[^\s])^[^|]+$/) if @address_one !~ pattern invalid_properties.push("invalid value for \"address_one\", must conform to the pattern #{pattern}.") end if !@address_two.nil? && @address_two.to_s.length > 30 invalid_properties.push('invalid value for "address_two", the character length must be smaller than or equal to 30.') end pattern = Regexp.new(/(?=.*[^\s])^[^|]+$/) if !@address_two.nil? && @address_two !~ pattern invalid_properties.push("invalid value for \"address_two\", must conform to the pattern #{pattern}.") end if @city.nil? invalid_properties.push('invalid value for "city", city cannot be nil.') end if @city.to_s.length > 30 invalid_properties.push('invalid value for "city", the character length must be smaller than or equal to 30.') end pattern = Regexp.new(/(?=.*[^\s])^[^|]+$/) if @city !~ pattern invalid_properties.push("invalid value for \"city\", must conform to the pattern #{pattern}.") end if @state.nil? invalid_properties.push('invalid value for "state", state cannot be nil.') end if @state.to_s.length > 2 invalid_properties.push('invalid value for "state", the character length must be smaller than or equal to 2.') end pattern = Regexp.new(/^[A-Z]{2}$/) if @state !~ pattern invalid_properties.push("invalid value for \"state\", must conform to the pattern #{pattern}.") end if @zip.nil? invalid_properties.push('invalid value for "zip", zip cannot be nil.') end if @zip.to_s.length > 11 invalid_properties.push('invalid value for "zip", the character length must be smaller than or equal to 11.') end pattern = Regexp.new(/(?=.*[^\s])^[^|]+$/) if @zip !~ pattern invalid_properties.push("invalid value for \"zip\", must conform to the pattern #{pattern}.") end if @phone.nil? invalid_properties.push('invalid value for "phone", phone cannot be nil.') end if @phone.to_s.length > 10 invalid_properties.push('invalid value for "phone", the character length must be smaller than or equal to 10.') end pattern = Regexp.new(/^[0-9]+$/) if @phone !~ pattern invalid_properties.push("invalid value for \"phone\", must conform to the pattern #{pattern}.") end if !@email.nil? && @email.to_s.length > 100 invalid_properties.push('invalid value for "email", the character length must be smaller than or equal to 100.') end pattern = Regexp.new(/(?=.*[^\s])^[^|]+$/) if !@email.nil? && @email !~ pattern invalid_properties.push("invalid value for \"email\", must conform to the pattern #{pattern}.") end if !@country_code.nil? && @country_code.to_s.length > 2 invalid_properties.push('invalid value for "country_code", the character length must be smaller than or equal to 2.') end pattern = Regexp.new(/^[A-Z]{2}$/) if !@country_code.nil? && @country_code !~ pattern invalid_properties.push("invalid value for \"country_code\", must conform to the pattern #{pattern}.") end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
573 574 575 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 573 def to_body to_hash end |
#to_hash(attribute_map = self.class.attribute_map, openapi_nullable = Set.new([])) ⇒ Hash
Returns the object in the form of hash
579 580 581 582 583 584 585 586 587 588 589 590 591 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 579 def to_hash(attribute_map = self.class.attribute_map, openapi_nullable = Set.new([])) hash = {} attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = 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
567 568 569 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 567 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
259 260 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 |
# File 'lib/openapi_client/models/tele_check_ach_payment_method_ach_bill_to.rb', line 259 def valid? return false if !@first_name.nil? && @first_name.to_s.length > 30 return false if !@first_name.nil? && @first_name !~ Regexp.new(/(?=.*[^\s])^[^|]+$/) return false if @last_name.nil? return false if @last_name.to_s.length > 30 return false if @last_name !~ Regexp.new(/(?=.*[^\s])^[^|]+$/) return false if @address_one.nil? return false if @address_one.to_s.length > 50 return false if @address_one !~ Regexp.new(/(?=.*[^\s])^[^|]+$/) return false if !@address_two.nil? && @address_two.to_s.length > 30 return false if !@address_two.nil? && @address_two !~ Regexp.new(/(?=.*[^\s])^[^|]+$/) return false if @city.nil? return false if @city.to_s.length > 30 return false if @city !~ Regexp.new(/(?=.*[^\s])^[^|]+$/) return false if @state.nil? return false if @state.to_s.length > 2 return false if @state !~ Regexp.new(/^[A-Z]{2}$/) return false if @zip.nil? return false if @zip.to_s.length > 11 return false if @zip !~ Regexp.new(/(?=.*[^\s])^[^|]+$/) return false if @phone.nil? return false if @phone.to_s.length > 10 return false if @phone !~ Regexp.new(/^[0-9]+$/) return false if !@email.nil? && @email.to_s.length > 100 return false if !@email.nil? && @email !~ Regexp.new(/(?=.*[^\s])^[^|]+$/) return false if !@country_code.nil? && @country_code.to_s.length > 2 return false if !@country_code.nil? && @country_code !~ Regexp.new(/^[A-Z]{2}$/) true end |