Class: OpenapiClient::ReceiverInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/openapi_client/models/receiver_info.rb

Overview

Receiver information for a funding transaction.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ReceiverInfo

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



77
78
79
80
81
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
# File 'lib/openapi_client/models/receiver_info.rb', line 77

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `OpenapiClient::ReceiverInfo` 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::ReceiverInfo`. 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?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.key?(:'street_address')
    self.street_address = attributes[:'street_address']
  end

  if attributes.key?(:'city')
    self.city = attributes[:'city']
  end

  if attributes.key?(:'state_code')
    self.state_code = attributes[:'state_code']
  end

  if attributes.key?(:'country_code')
    self.country_code = attributes[:'country_code']
  end

  if attributes.key?(:'postal_code')
    self.postal_code = attributes[:'postal_code']
  end

  if attributes.key?(:'phone_number')
    self.phone_number = attributes[:'phone_number']
  end

  if attributes.key?(:'reference_number')
    self.reference_number = attributes[:'reference_number']
  end

  if attributes.key?(:'account_number')
    self. = attributes[:'account_number']
  end
end

Instance Attribute Details

#account_numberObject

Receiver account number.



43
44
45
# File 'lib/openapi_client/models/receiver_info.rb', line 43

def 
  @account_number
end

#cityObject

Receiver city.



25
26
27
# File 'lib/openapi_client/models/receiver_info.rb', line 25

def city
  @city
end

#country_codeObject

Receiver country code.



31
32
33
# File 'lib/openapi_client/models/receiver_info.rb', line 31

def country_code
  @country_code
end

#nameObject

Receiver name.



19
20
21
# File 'lib/openapi_client/models/receiver_info.rb', line 19

def name
  @name
end

#phone_numberObject

Receiver phone number.



37
38
39
# File 'lib/openapi_client/models/receiver_info.rb', line 37

def phone_number
  @phone_number
end

#postal_codeObject

Receiver postal code.



34
35
36
# File 'lib/openapi_client/models/receiver_info.rb', line 34

def postal_code
  @postal_code
end

#reference_numberObject

Receiver reference number.



40
41
42
# File 'lib/openapi_client/models/receiver_info.rb', line 40

def reference_number
  @reference_number
end

#state_codeObject

Receiver state.



28
29
30
# File 'lib/openapi_client/models/receiver_info.rb', line 28

def state_code
  @state_code
end

#street_addressObject

Receiver street address.



22
23
24
# File 'lib/openapi_client/models/receiver_info.rb', line 22

def street_address
  @street_address
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/openapi_client/models/receiver_info.rb', line 46

def self.attribute_map
  {
    :'name' => :'name',
    :'street_address' => :'streetAddress',
    :'city' => :'city',
    :'state_code' => :'stateCode',
    :'country_code' => :'countryCode',
    :'postal_code' => :'postalCode',
    :'phone_number' => :'phoneNumber',
    :'reference_number' => :'referenceNumber',
    :'account_number' => :'accountNumber'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



450
451
452
# File 'lib/openapi_client/models/receiver_info.rb', line 450

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_typesObject

Attribute type mapping.



61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/openapi_client/models/receiver_info.rb', line 61

def self.openapi_types
  {
    :'name' => :'String',
    :'street_address' => :'String',
    :'city' => :'String',
    :'state_code' => :'String',
    :'country_code' => :'String',
    :'postal_code' => :'String',
    :'phone_number' => :'String',
    :'reference_number' => :'String',
    :'account_number' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



421
422
423
424
425
426
427
428
429
430
431
432
433
# File 'lib/openapi_client/models/receiver_info.rb', line 421

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      name == o.name &&
      street_address == o.street_address &&
      city == o.city &&
      state_code == o.state_code &&
      country_code == o.country_code &&
      postal_code == o.postal_code &&
      phone_number == o.phone_number &&
      reference_number == o.reference_number &&
       == o.
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
# File 'lib/openapi_client/models/receiver_info.rb', line 478

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

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



552
553
554
555
556
557
558
559
560
561
562
563
564
# File 'lib/openapi_client/models/receiver_info.rb', line 552

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
# File 'lib/openapi_client/models/receiver_info.rb', line 457

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

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


437
438
439
# File 'lib/openapi_client/models/receiver_info.rb', line 437

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



443
444
445
# File 'lib/openapi_client/models/receiver_info.rb', line 443

def hash
  [name, street_address, city, state_code, country_code, postal_code, phone_number, reference_number, ].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



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
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
# File 'lib/openapi_client/models/receiver_info.rb', line 129

def list_invalid_properties
  invalid_properties = Array.new
  if @name.nil?
    invalid_properties.push('invalid value for "name", name cannot be nil.')
  end

  if @name.to_s.length > 70
    invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 70.')
  end

  pattern = Regexp.new(/^(?!\s*$).+/)
  if @name !~ pattern
    invalid_properties.push("invalid value for \"name\", must conform to the pattern #{pattern}.")
  end

  if @street_address.nil?
    invalid_properties.push('invalid value for "street_address", street_address cannot be nil.')
  end

  if @street_address.to_s.length > 50
    invalid_properties.push('invalid value for "street_address", the character length must be smaller than or equal to 50.')
  end

  pattern = Regexp.new(/^(?!\s*$).+/)
  if @street_address !~ pattern
    invalid_properties.push("invalid value for \"street_address\", 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 > 25
    invalid_properties.push('invalid value for "city", the character length must be smaller than or equal to 25.')
  end

  pattern = Regexp.new(/^(?!\s*$).+/)
  if @city !~ pattern
    invalid_properties.push("invalid value for \"city\", must conform to the pattern #{pattern}.")
  end

  if @state_code.nil?
    invalid_properties.push('invalid value for "state_code", state_code cannot be nil.')
  end

  pattern = Regexp.new(/[A-Z]{2}/)
  if @state_code !~ pattern
    invalid_properties.push("invalid value for \"state_code\", must conform to the pattern #{pattern}.")
  end

  if @country_code.nil?
    invalid_properties.push('invalid value for "country_code", country_code cannot be nil.')
  end

  pattern = Regexp.new(/[A-Z]{2}/)
  if @country_code !~ pattern
    invalid_properties.push("invalid value for \"country_code\", must conform to the pattern #{pattern}.")
  end

  if @postal_code.nil?
    invalid_properties.push('invalid value for "postal_code", postal_code cannot be nil.')
  end

  if @postal_code.to_s.length > 5
    invalid_properties.push('invalid value for "postal_code", the character length must be smaller than or equal to 5.')
  end

  pattern = Regexp.new(/^(?!\s*$).+/)
  if @postal_code !~ pattern
    invalid_properties.push("invalid value for \"postal_code\", must conform to the pattern #{pattern}.")
  end

  if @phone_number.nil?
    invalid_properties.push('invalid value for "phone_number", phone_number cannot be nil.')
  end

  pattern = Regexp.new(/[0-9]{10}/)
  if @phone_number !~ pattern
    invalid_properties.push("invalid value for \"phone_number\", must conform to the pattern #{pattern}.")
  end

  if @reference_number.nil?
    invalid_properties.push('invalid value for "reference_number", reference_number cannot be nil.')
  end

  if @reference_number.to_s.length > 19
    invalid_properties.push('invalid value for "reference_number", the character length must be smaller than or equal to 19.')
  end

  pattern = Regexp.new(/^(?!\s*$).+/)
  if @reference_number !~ pattern
    invalid_properties.push("invalid value for \"reference_number\", must conform to the pattern #{pattern}.")
  end

  if !@account_number.nil? && @account_number.to_s.length > 19
    invalid_properties.push('invalid value for "account_number", the character length must be smaller than or equal to 19.')
  end

  pattern = Regexp.new(/^(?!\s*$).+/)
  if !@account_number.nil? && @account_number !~ pattern
    invalid_properties.push("invalid value for \"account_number\", must conform to the pattern #{pattern}.")
  end

  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



528
529
530
# File 'lib/openapi_client/models/receiver_info.rb', line 528

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

Returns:

  • (Hash)

    Returns the object in the form of hash



534
535
536
537
538
539
540
541
542
543
544
545
546
# File 'lib/openapi_client/models/receiver_info.rb', line 534

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



522
523
524
# File 'lib/openapi_client/models/receiver_info.rb', line 522

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# File 'lib/openapi_client/models/receiver_info.rb', line 237

def valid?
  return false if @name.nil?
  return false if @name.to_s.length > 70
  return false if @name !~ Regexp.new(/^(?!\s*$).+/)
  return false if @street_address.nil?
  return false if @street_address.to_s.length > 50
  return false if @street_address !~ Regexp.new(/^(?!\s*$).+/)
  return false if @city.nil?
  return false if @city.to_s.length > 25
  return false if @city !~ Regexp.new(/^(?!\s*$).+/)
  return false if @state_code.nil?
  return false if @state_code !~ Regexp.new(/[A-Z]{2}/)
  return false if @country_code.nil?
  return false if @country_code !~ Regexp.new(/[A-Z]{2}/)
  return false if @postal_code.nil?
  return false if @postal_code.to_s.length > 5
  return false if @postal_code !~ Regexp.new(/^(?!\s*$).+/)
  return false if @phone_number.nil?
  return false if @phone_number !~ Regexp.new(/[0-9]{10}/)
  return false if @reference_number.nil?
  return false if @reference_number.to_s.length > 19
  return false if @reference_number !~ Regexp.new(/^(?!\s*$).+/)
  return false if !@account_number.nil? && @account_number.to_s.length > 19
  return false if !@account_number.nil? && @account_number !~ Regexp.new(/^(?!\s*$).+/)
  true
end