10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
export enum PointTransactionType {
|
|
CREDIT = 'credit',
|
|
DEBIT = 'debit',
|
|
}
|
|
|
|
|
|
export enum PointTransactionReason {
|
|
ORDER_COMPLETED_DEPOSIT = 'order_completed_deposit',
|
|
CONVERT_SCORE_TO_POINT = 'convert_score_to_point',
|
|
} |