Skip to content

Commit

Permalink
PO-2111 Change no errors to nil
Browse files Browse the repository at this point in the history
  • Loading branch information
Ugo Lambert committed Jan 30, 2025
1 parent f6f0083 commit 3ad6046
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/ibanity/api/xs2a/bulk_payment_initiation_request.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ defmodule Ibanity.Xs2a.BulkPaymentInitiationRequest do
@resource_type "bulk_payment_initiation_request"

defstruct id: nil,
errors: nil,
status: nil,
status_reason: nil,
product_type: nil,
Expand All @@ -22,8 +23,7 @@ defmodule Ibanity.Xs2a.BulkPaymentInitiationRequest do
skip_ibanity_completion_callback: false,
allow_financial_institution_redirect_uri: false,
batch_booking_preferred: false,
payments: [],
errors: []
payments: []

defmodule Payment do
defstruct remittance_information: nil,
Expand Down
2 changes: 1 addition & 1 deletion lib/ibanity/api/xs2a/payment_initiation_request.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Ibanity.Xs2a.PaymentInitiationRequest do
@resource_type "payment_initiation_request"

defstruct id: nil,
errors: [],
errors: nil,
status: nil,
status_reason: nil,
remittance_information_type: nil,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Ibanity.Xs2a.PeriodicPaymentInitiationRequest do
@resource_type "periodic_payment_initiation_request"

defstruct id: nil,
errors: [],
errors: nil,
status: nil,
status_reason: nil,
remittance_information_type: nil,
Expand Down

0 comments on commit 3ad6046

Please sign in to comment.