16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
export namespace Transactions {
|
|
export const enum rewardType {
|
|
stay = "stay",
|
|
rewardNight = "rewardnight",
|
|
enrollment = "enrollment",
|
|
expired = "expired",
|
|
redgift = "redgift",
|
|
ancillary = "ancillary",
|
|
pointShop = "pointshop",
|
|
tui_points = "tui_points",
|
|
mastercard_points = "mastercard_points",
|
|
stayAdj = "stay/adj",
|
|
othersAdj = "others/adj",
|
|
}
|
|
}
|