Merge branch 'main' of https://git.shiblysolution.id/BRITL/entity
This commit is contained in:
@ -1,7 +1,24 @@
|
||||
export class EmailBody {
|
||||
subject: string;
|
||||
to: string[];
|
||||
cc: string[];
|
||||
bcc: string[];
|
||||
html: string;
|
||||
}
|
||||
subject: string;
|
||||
to: string[];
|
||||
cc: string[];
|
||||
bcc: string[];
|
||||
html: string;
|
||||
}
|
||||
|
||||
export class EmailBodyTrx {
|
||||
from: string;
|
||||
subject: string;
|
||||
to: string[];
|
||||
cc: string[];
|
||||
bcc: string[];
|
||||
html: string;
|
||||
}
|
||||
|
||||
export enum EmailTrxFrom {
|
||||
"non_reply" = "non_reply",
|
||||
"registration" = "registration",
|
||||
"verification" = "verification",
|
||||
"transaction" = "transaction",
|
||||
"info" = "info",
|
||||
}
|
||||
|
||||
@ -26,6 +26,8 @@ export enum TrxCustomerType {
|
||||
}
|
||||
|
||||
export enum TrxCostCode {
|
||||
"BRI_TL_USD" = "BRI_TL_USD",
|
||||
"OTHER_TL_USD" = "OTHER_TL_USD",
|
||||
"BRI_ID_IDR" = "BRI_ID_IDR",
|
||||
"BRI_ID_USD" = "BRI_ID_USD",
|
||||
"OTHER_ID_IDR" = "OTHER_ID_IDR",
|
||||
|
||||
Reference in New Issue
Block a user