Skip to content

Commit

Permalink
PL-3706 Add bulkPaymentInstructionLimits to the financial institution…
Browse files Browse the repository at this point in the history
… API and 3 other fields
  • Loading branch information
Ugo Lambert authored and damienbr committed Oct 10, 2024
1 parent 3b07e22 commit 8a21726
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lib/ibanity/api/xs2a/financial_institution.ex
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ defmodule Ibanity.Xs2a.FinancialInstitution do
maintenance_to: nil,
maintenance_type: nil,
time_zone: nil,
pending_transactions_available: nil
pending_transactions_available: nil,
bulk_payment_instructions_limit: nil,
expected_authorization_lifetime: nil,
payment_debtor_account_reference_required: nil,
bulk_payment_debtor_account_reference_required: nil

@resource_type "financial_institution"

Expand Down Expand Up @@ -209,7 +213,11 @@ defmodule Ibanity.Xs2a.FinancialInstitution do
maintenance_to: {~w(attributes maintenanceTo), :datetime},
maintenance_type: {~w(attributes maintenanceType), :string},
time_zone: {~w(attributes timeZone), :string},
pending_transactions_available: {~w(attributes pendingTransactionsAvailable), :boolean}
pending_transactions_available: {~w(attributes pendingTransactionsAvailable), :boolean},
bulk_payment_instructions_limit: {~w(attributes bulkPaymentInstructionsLimit), :integer},
expected_authorization_lifetime: {~w(attributes expectedAuthorizationLifetime), :integer},
payment_debtor_account_reference_required: {~w(attributes paymentDebtorAccountReferenceRequired), :boolean},
bulk_payment_debtor_account_reference_required: {~w(attributes bulkPaymentDebtorAccountReferenceRequired), :boolean}
]
end
end

0 comments on commit 8a21726

Please sign in to comment.