brilink update
This commit is contained in:
@ -1,136 +1,143 @@
|
||||
export enum BrilinkMerchantStatus {
|
||||
"active" = "active",
|
||||
"inactive" = "inactive",
|
||||
};
|
||||
"active" = "active",
|
||||
"inactive" = "inactive",
|
||||
}
|
||||
|
||||
export enum BrilinkTerminalType {
|
||||
"edc" = "edc",
|
||||
};
|
||||
"edc" = "edc",
|
||||
}
|
||||
|
||||
export enum BrilinkTerminalCondition {
|
||||
"new" = "new",
|
||||
"good" = "good",
|
||||
"minor_damage" = "minor_damage",
|
||||
"damaged" = "damaged",
|
||||
"unusabel" = "unusable",
|
||||
"disposed" = "disposed",
|
||||
"lost" = "lost",
|
||||
};
|
||||
"new" = "new",
|
||||
"good" = "good",
|
||||
"minor_damage" = "minor_damage",
|
||||
"damaged" = "damaged",
|
||||
"unusabel" = "unusable",
|
||||
"disposed" = "disposed",
|
||||
"lost" = "lost",
|
||||
}
|
||||
|
||||
export enum BrilinkTerminalOnline {
|
||||
"online" = "online",
|
||||
"offline" = "offline",
|
||||
"block" = "block"
|
||||
"online" = "online",
|
||||
"offline" = "offline",
|
||||
"block" = "block",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceType {
|
||||
"merchant" = "merchant",
|
||||
"terminal" = "terminal"
|
||||
"merchant" = "merchant",
|
||||
"terminal" = "terminal",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceCode {
|
||||
"brizzi" = "brizzi",
|
||||
"remittance" = "remittance"
|
||||
"brizzi" = "brizzi",
|
||||
"remittance" = "remittance",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceMutationType {
|
||||
"credit" = "credit",
|
||||
"debit" = "debit",
|
||||
"credit" = "credit",
|
||||
"debit" = "debit",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceMutationCodePrefixType {
|
||||
"credit" = "CR",
|
||||
"debit" = "DB"
|
||||
"credit" = "CR",
|
||||
"debit" = "DB",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceMutationActvity {
|
||||
"topup" = "topup",
|
||||
"transfer" = "transfer",
|
||||
"withdrawal" = "withdrawal",
|
||||
"topup" = "topup",
|
||||
"transfer" = "transfer",
|
||||
"withdrawal" = "withdrawal",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceMutationCodePrefixActvity {
|
||||
"topup" = "1",
|
||||
"transfer" = "2",
|
||||
"withdrawal" = "3"
|
||||
"topup" = "1",
|
||||
"transfer" = "2",
|
||||
"withdrawal" = "3",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceSourceType {
|
||||
"account" = "account",
|
||||
"merchant" = "merchant",
|
||||
"terminal" = "terminal",
|
||||
"account" = "account",
|
||||
"merchant" = "merchant",
|
||||
"terminal" = "terminal",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceDestinationType {
|
||||
"account" = "account",
|
||||
"merchant" = "merchant",
|
||||
"terminal" = "terminal",
|
||||
"brizzi" = "brizzi"
|
||||
"account" = "account",
|
||||
"merchant" = "merchant",
|
||||
"terminal" = "terminal",
|
||||
"brizzi" = "brizzi",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceMutationStatus {
|
||||
"pending" = "pending",
|
||||
"process" = "process",
|
||||
"success" = "success",
|
||||
"fail" = "fail",
|
||||
"reject" = "reject"
|
||||
"pending" = "pending",
|
||||
"process" = "process",
|
||||
"success" = "success",
|
||||
"fail" = "fail",
|
||||
"reject" = "reject",
|
||||
}
|
||||
|
||||
export enum BrilinkBalanceTopupCodePrefix {
|
||||
"account" = "ACC",
|
||||
"merchant" = "MCH",
|
||||
"terminal" = "TML",
|
||||
"brizzi" = "BRZ"
|
||||
"account" = "ACC",
|
||||
"merchant" = "MCH",
|
||||
"terminal" = "TML",
|
||||
"brizzi" = "BRZ",
|
||||
}
|
||||
|
||||
export enum BrilinkTransactionType {
|
||||
"brizzi" = "brizzi",
|
||||
"remittance" = "remittance"
|
||||
"brizzi" = "brizzi",
|
||||
"remittance" = "remittance",
|
||||
"mobile" = "mobile",
|
||||
}
|
||||
|
||||
export enum BrilinkTransactionCodePrefixType {
|
||||
"brizzi" = "BRZ",
|
||||
"remittance" = "RTC"
|
||||
"brizzi" = "BRZ",
|
||||
"remittance" = "RTC",
|
||||
"mobile" = "MBL",
|
||||
}
|
||||
|
||||
export enum BrilinkTransactionActivity {
|
||||
"topup" = "topup",
|
||||
"payment" = "payment",
|
||||
"purchase" = "purchase"
|
||||
"topup" = "topup",
|
||||
"payment" = "payment",
|
||||
"purchase" = "purchase",
|
||||
}
|
||||
|
||||
export enum BrilinkTransactionCodePrefixActivity {
|
||||
"topup" = "1",
|
||||
"payment" = "2",
|
||||
"purchase" = "3"
|
||||
"topup" = "1",
|
||||
"payment" = "2",
|
||||
"purchase" = "3",
|
||||
}
|
||||
|
||||
export enum BrilinkTransactionStatus {
|
||||
"pending" = "pending",
|
||||
"process" = "process",
|
||||
"success" = "success",
|
||||
"fail" = "fail",
|
||||
"unpaid" = "unpaid",
|
||||
"pending" = "pending",
|
||||
"process" = "process",
|
||||
"success" = "success",
|
||||
"fail" = "fail",
|
||||
}
|
||||
|
||||
export enum BrilinkMerchantSettlementStatus {
|
||||
"pending" = "pending",
|
||||
"process" = "process",
|
||||
"success" = "success",
|
||||
"fail" = "fail",
|
||||
"pending" = "pending",
|
||||
"process" = "process",
|
||||
"success" = "success",
|
||||
"fail" = "fail",
|
||||
}
|
||||
|
||||
export enum BrilinkDiscountType {
|
||||
"fix" = "fix",
|
||||
"percentage" = "percentage",
|
||||
"fix" = "fix",
|
||||
"percentage" = "percentage",
|
||||
}
|
||||
|
||||
export enum BrilinkDiscountStatus {
|
||||
"scheduled" = "scheduled",
|
||||
"active" = "active",
|
||||
"inactive" = "inactive",
|
||||
"expired" = "expired",
|
||||
"scheduled" = "scheduled",
|
||||
"active" = "active",
|
||||
"inactive" = "inactive",
|
||||
"expired" = "expired",
|
||||
}
|
||||
|
||||
export enum BrilinkDiscountModule {
|
||||
"brizzi" = "brizzi"
|
||||
"brizzi" = "brizzi",
|
||||
}
|
||||
|
||||
export enum BrilinkProductCategorySupplier {
|
||||
"tcel" = "tcel",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user