Skip to content

Commit

Permalink
Addd VisionBlue report type. (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
sipsorcery authored May 15, 2024
1 parent 4d84a86 commit 6f22d88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/NoFrixion.MoneyMoov/Enums/ReportTypesEnum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,9 @@ public enum ReportTypesEnum
/// A report for the transactions for all accounts for a merchant.
/// </summary>
MerchantAccountsTransaction = 5,

/// <summary>
/// Custom report to export transactions for VisionBlue.
/// </summary>
VisionBlueTransaction = 6
}
1 change: 1 addition & 0 deletions src/NoFrixion.MoneyMoov/Models/Reports/ReportResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public class ReportResult
ReportTypesEnum.SafeGuardingReconciliation => "application/json",
ReportTypesEnum.MerchantAccountsBalance => "text/csv",
ReportTypesEnum.MerchantAccountsTransaction => "text/csv",
ReportTypesEnum.VisionBlueTransaction => "text/csv",
_ => "text/plain"
};
}

0 comments on commit 6f22d88

Please sign in to comment.