31 lines
638 B
TypeScript
31 lines
638 B
TypeScript
export enum BrizziBatchStatus {
|
|
"queue" = "queue",
|
|
"process" = "process",
|
|
"success" = "success",
|
|
"failed" = "failed",
|
|
};
|
|
|
|
export enum BrizziCardStatus {
|
|
"available" = "available",
|
|
"active" = "active",
|
|
"inactive" = "inactive",
|
|
"blocked" = "blocked",
|
|
};
|
|
|
|
export enum BrizziHistoryActvity {
|
|
"active" = "active",
|
|
"topup" = "topup",
|
|
"payment" = "payment",
|
|
"blocked" = "blocked"
|
|
}
|
|
|
|
export enum BrizziHistoryType {
|
|
"credit" = "credit",
|
|
"debit" = "debit",
|
|
}
|
|
|
|
export enum BrizziHistoryRemarks {
|
|
"unverified" = "unverified",
|
|
"verified" = "verified",
|
|
"suspicious" = "suspicious",
|
|
} |