Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Direct Debit mandate model fix #435

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/NoFrixion.MoneyMoov/Models/Mandates/Mandate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,14 @@ public class Mandate
/// <summary>
/// Currency of this mandate.
/// </summary>
public CurrencyTypeEnum Currency { get; set; }
public CurrencyTypeEnum Currency { get; set; }
/// <summary>
/// Amount of this mandate.
/// This is an optional field that with mandates created via Account Information Services can be
/// used to do a balance check on the payer's account. We don't currenlty support the AIS workflow.
/// </summary>
[System.Text.Json.Serialization.JsonIgnore]
[Newtonsoft.Json.JsonProperty]
public decimal Amount { get; set; }

/// <summary>
Expand Down
7 changes: 4 additions & 3 deletions src/NoFrixion.MoneyMoov/Models/Mandates/MandateCreate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,11 @@ public class MandateCreate
public CurrencyTypeEnum Currency { get; set; }

/// <summary>
/// Amount of the mandate.
/// This is an optional field that with mandates created via Account Information Services can be
/// used to do a balance check on the payer's account. We don't currenlty support the AIS workflow.
/// </summary>
[Required(ErrorMessage = "Please, specify an amount.")]
[Range(0.00001, double.MaxValue, ErrorMessage = "Minimum value of 0.00001 is required for Amount")]
[System.Text.Json.Serialization.JsonIgnore]
[Newtonsoft.Json.JsonProperty]
public decimal Amount { get; set; }

/// <summary>
Expand Down
Loading