Class: Wallee::InvoiceReconciliationRecord

Inherits:
Object
  • Object
show all
Defined in:
lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ InvoiceReconciliationRecord

Initializes the object

Parameters:

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

    Model attributes in the form of hash



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
257
258
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
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 202

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?(:'id')
    self.id = attributes[:'id']
  end

  if attributes.has_key?(:'linkedSpaceId')
    self.linked_space_id = attributes[:'linkedSpaceId']
  end

  if attributes.has_key?(:'linkedTransaction')
    self.linked_transaction = attributes[:'linkedTransaction']
  end

  if attributes.has_key?(:'address')
    self.address = attributes[:'address']
  end

  if attributes.has_key?(:'amount')
    self.amount = attributes[:'amount']
  end

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

  if attributes.has_key?(:'country')
    self.country = attributes[:'country']
  end

  if attributes.has_key?(:'createdOn')
    self.created_on = attributes[:'createdOn']
  end

  if attributes.has_key?(:'currency')
    self.currency = attributes[:'currency']
  end

  if attributes.has_key?(:'discardedBy')
    self.discarded_by = attributes[:'discardedBy']
  end

  if attributes.has_key?(:'discardedOn')
    self.discarded_on = attributes[:'discardedOn']
  end

  if attributes.has_key?(:'environment')
    self.environment = attributes[:'environment']
  end

  if attributes.has_key?(:'familyName')
    self.family_name = attributes[:'familyName']
  end

  if attributes.has_key?(:'givenName')
    self.given_name = attributes[:'givenName']
  end

  if attributes.has_key?(:'iban')
    self.iban = attributes[:'iban']
  end

  if attributes.has_key?(:'lastResolutionFailure')
    self.last_resolution_failure = attributes[:'lastResolutionFailure']
  end

  if attributes.has_key?(:'participantNumber')
    self.participant_number = attributes[:'participantNumber']
  end

  if attributes.has_key?(:'paymentFeeAmount')
    self.payment_fee_amount = attributes[:'paymentFeeAmount']
  end

  if attributes.has_key?(:'paymentFeeCurrency')
    self.payment_fee_currency = attributes[:'paymentFeeCurrency']
  end

  if attributes.has_key?(:'paymentReason')
    self.payment_reason = attributes[:'paymentReason']
  end

  if attributes.has_key?(:'plannedPurgeDate')
    self.planned_purge_date = attributes[:'plannedPurgeDate']
  end

  if attributes.has_key?(:'postCode')
    self.post_code = attributes[:'postCode']
  end

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

  if attributes.has_key?(:'rejectionStatus')
    self.rejection_status = attributes[:'rejectionStatus']
  end

  if attributes.has_key?(:'resolvedBy')
    self.resolved_by = attributes[:'resolvedBy']
  end

  if attributes.has_key?(:'resolvedOn')
    self.resolved_on = attributes[:'resolvedOn']
  end

  if attributes.has_key?(:'senderBankAccount')
    self. = attributes[:'senderBankAccount']
  end

  if attributes.has_key?(:'state')
    self.state = attributes[:'state']
  end

  if attributes.has_key?(:'street')
    self.street = attributes[:'street']
  end

  if attributes.has_key?(:'type')
    self.type = attributes[:'type']
  end

  if attributes.has_key?(:'uniqueId')
    self.unique_id = attributes[:'uniqueId']
  end

  if attributes.has_key?(:'valueDate')
    self.value_date = attributes[:'valueDate']
  end

  if attributes.has_key?(:'version')
    self.version = attributes[:'version']
  end
end

Instance Attribute Details

#addressObject

Returns the value of attribute address.



33
34
35
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 33

def address
  @address
end

#amountObject

Returns the value of attribute amount.



36
37
38
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 36

def amount
  @amount
end

#cityObject

Returns the value of attribute city.



39
40
41
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 39

def city
  @city
end

#countryObject

Returns the value of attribute country.



42
43
44
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 42

def country
  @country
end

#created_onObject

The date and time when the object was created.



45
46
47
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 45

def created_on
  @created_on
end

#currencyObject

Returns the value of attribute currency.



48
49
50
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 48

def currency
  @currency
end

#discarded_byObject

Returns the value of attribute discarded_by.



51
52
53
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 51

def discarded_by
  @discarded_by
end

#discarded_onObject

The discarded on date indicates when the bank transaction has been discarded.



54
55
56
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 54

def discarded_on
  @discarded_on
end

#environmentObject

Returns the value of attribute environment.



57
58
59
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 57

def environment
  @environment
end

#family_nameObject

Returns the value of attribute family_name.



60
61
62
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 60

def family_name
  @family_name
end

#given_nameObject

Returns the value of attribute given_name.



63
64
65
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 63

def given_name
  @given_name
end

#ibanObject

Returns the value of attribute iban.



66
67
68
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 66

def iban
  @iban
end

#idObject

A unique identifier for the object.



24
25
26
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 24

def id
  @id
end

#last_resolution_failureObject

Returns the value of attribute last_resolution_failure.



69
70
71
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 69

def last_resolution_failure
  @last_resolution_failure
end

#linked_space_idObject

The ID of the space this object belongs to.



27
28
29
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 27

def linked_space_id
  @linked_space_id
end

#linked_transactionObject

Returns the value of attribute linked_transaction.



30
31
32
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 30

def linked_transaction
  @linked_transaction
end

#participant_numberObject

Returns the value of attribute participant_number.



72
73
74
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 72

def participant_number
  @participant_number
end

#payment_fee_amountObject

Returns the value of attribute payment_fee_amount.



75
76
77
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 75

def payment_fee_amount
  @payment_fee_amount
end

#payment_fee_currencyObject

Returns the value of attribute payment_fee_currency.



78
79
80
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 78

def payment_fee_currency
  @payment_fee_currency
end

#payment_reasonObject

Returns the value of attribute payment_reason.



81
82
83
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 81

def payment_reason
  @payment_reason
end

#planned_purge_dateObject

The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.



84
85
86
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 84

def planned_purge_date
  @planned_purge_date
end

#post_codeObject

Returns the value of attribute post_code.



87
88
89
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 87

def post_code
  @post_code
end

#reference_numberObject

Returns the value of attribute reference_number.



90
91
92
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 90

def reference_number
  @reference_number
end

#rejection_statusObject

Returns the value of attribute rejection_status.



93
94
95
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 93

def rejection_status
  @rejection_status
end

#resolved_byObject

Returns the value of attribute resolved_by.



96
97
98
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 96

def resolved_by
  @resolved_by
end

#resolved_onObject

The resolved on date indicates when the bank transaction has been resolved.



99
100
101
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 99

def resolved_on
  @resolved_on
end

#sender_bank_accountObject

Returns the value of attribute sender_bank_account.



102
103
104
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 102

def 
  @sender_bank_account
end

#stateObject

The object’s current state.



105
106
107
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 105

def state
  @state
end

#streetObject

Returns the value of attribute street.



108
109
110
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 108

def street
  @street
end

#typeObject

Returns the value of attribute type.



111
112
113
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 111

def type
  @type
end

#unique_idObject

Returns the value of attribute unique_id.



114
115
116
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 114

def unique_id
  @unique_id
end

#value_dateObject

Returns the value of attribute value_date.



117
118
119
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 117

def value_date
  @value_date
end

#versionObject

The version is used for optimistic locking and incremented whenever the object is updated.



120
121
122
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 120

def version
  @version
end

Class Method Details

.attribute_mapObject

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



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
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 123

def self.attribute_map
  {
    :'id' => :'id',
    :'linked_space_id' => :'linkedSpaceId',
    :'linked_transaction' => :'linkedTransaction',
    :'address' => :'address',
    :'amount' => :'amount',
    :'city' => :'city',
    :'country' => :'country',
    :'created_on' => :'createdOn',
    :'currency' => :'currency',
    :'discarded_by' => :'discardedBy',
    :'discarded_on' => :'discardedOn',
    :'environment' => :'environment',
    :'family_name' => :'familyName',
    :'given_name' => :'givenName',
    :'iban' => :'iban',
    :'last_resolution_failure' => :'lastResolutionFailure',
    :'participant_number' => :'participantNumber',
    :'payment_fee_amount' => :'paymentFeeAmount',
    :'payment_fee_currency' => :'paymentFeeCurrency',
    :'payment_reason' => :'paymentReason',
    :'planned_purge_date' => :'plannedPurgeDate',
    :'post_code' => :'postCode',
    :'reference_number' => :'referenceNumber',
    :'rejection_status' => :'rejectionStatus',
    :'resolved_by' => :'resolvedBy',
    :'resolved_on' => :'resolvedOn',
    :'sender_bank_account' => :'senderBankAccount',
    :'state' => :'state',
    :'street' => :'street',
    :'type' => :'type',
    :'unique_id' => :'uniqueId',
    :'value_date' => :'valueDate',
    :'version' => :'version'
  }
end

.swagger_typesObject

Attribute type mapping.



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
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 162

def self.swagger_types
  {
    :'id' => :'Integer',
    :'linked_space_id' => :'Integer',
    :'linked_transaction' => :'Integer',
    :'address' => :'String',
    :'amount' => :'Float',
    :'city' => :'String',
    :'country' => :'String',
    :'created_on' => :'DateTime',
    :'currency' => :'String',
    :'discarded_by' => :'Integer',
    :'discarded_on' => :'DateTime',
    :'environment' => :'ChargeAttemptEnvironment',
    :'family_name' => :'String',
    :'given_name' => :'String',
    :'iban' => :'String',
    :'last_resolution_failure' => :'FailureReason',
    :'participant_number' => :'String',
    :'payment_fee_amount' => :'Float',
    :'payment_fee_currency' => :'String',
    :'payment_reason' => :'String',
    :'planned_purge_date' => :'DateTime',
    :'post_code' => :'String',
    :'reference_number' => :'String',
    :'rejection_status' => :'InvoiceReconciliationRecordRejectionStatus',
    :'resolved_by' => :'Integer',
    :'resolved_on' => :'DateTime',
    :'sender_bank_account' => :'String',
    :'state' => :'InvoiceReconciliationRecordState',
    :'street' => :'String',
    :'type' => :'InvoiceReconciliationRecordType',
    :'unique_id' => :'String',
    :'value_date' => :'DateTime',
    :'version' => :'Integer'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 416

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      linked_space_id == o.linked_space_id &&
      linked_transaction == o.linked_transaction &&
      address == o.address &&
      amount == o.amount &&
      city == o.city &&
      country == o.country &&
      created_on == o.created_on &&
      currency == o.currency &&
      discarded_by == o.discarded_by &&
      discarded_on == o.discarded_on &&
      environment == o.environment &&
      family_name == o.family_name &&
      given_name == o.given_name &&
      iban == o.iban &&
      last_resolution_failure == o.last_resolution_failure &&
      participant_number == o.participant_number &&
      payment_fee_amount == o.payment_fee_amount &&
      payment_fee_currency == o.payment_fee_currency &&
      payment_reason == o.payment_reason &&
      planned_purge_date == o.planned_purge_date &&
      post_code == o.post_code &&
      reference_number == o.reference_number &&
      rejection_status == o.rejection_status &&
      resolved_by == o.resolved_by &&
      resolved_on == o.resolved_on &&
       == o. &&
      state == o.state &&
      street == o.street &&
      type == o.type &&
      unique_id == o.unique_id &&
      value_date == o.value_date &&
      version == o.version
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



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
519
520
521
522
523
524
525
526
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 490

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 = Wallee.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

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



556
557
558
559
560
561
562
563
564
565
566
567
568
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 556

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 469

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 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

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


456
457
458
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 456

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



462
463
464
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 462

def hash
  [id, linked_space_id, linked_transaction, address, amount, city, country, created_on, currency, discarded_by, discarded_on, environment, family_name, given_name, iban, last_resolution_failure, participant_number, payment_fee_amount, payment_fee_currency, payment_reason, planned_purge_date, post_code, reference_number, rejection_status, resolved_by, resolved_on, , state, street, type, unique_id, value_date, version].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 343

def list_invalid_properties
  invalid_properties = Array.new
  if !@iban.nil? && @iban.to_s.length > 100
    invalid_properties.push('invalid value for "iban", the character length must be smaller than or equal to 100.')
  end

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

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

  if !@unique_id.nil? && @unique_id.to_s.length > 500
    invalid_properties.push('invalid value for "unique_id", the character length must be smaller than or equal to 500.')
  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



536
537
538
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 536

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



542
543
544
545
546
547
548
549
550
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 542

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



530
531
532
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 530

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



366
367
368
369
370
371
372
# File 'lib/wallee-ruby-sdk/models/invoice_reconciliation_record.rb', line 366

def valid?
  return false if !@iban.nil? && @iban.to_s.length > 100
  return false if !@participant_number.nil? && @participant_number.to_s.length > 100
  return false if !@reference_number.nil? && @reference_number.to_s.length > 255
  return false if !@unique_id.nil? && @unique_id.to_s.length > 500
  true
end