This commit is contained in:
2025-09-18 06:27:38 +07:00
parent 81b55b27ab
commit 54ca5d7948
6 changed files with 383 additions and 97 deletions

View File

@ -6,3 +6,16 @@ export enum TrxTransactionStatusType {
"reject" = "reject",
"approved" = "approved",
}
export enum TrxTransactionType {
"deposit" = "deposit",
"transfer" = "transfer",
"clearing" = "clearing",
"rtgs" = "rtgs",
}
export enum TrxTransactionCorrespondentFees {
"sender" = "sender",
"recepient" = "recepient",
"other" = "other",
}