gradido/backend/src/seeds/transactionLink/TransactionLinkInterface.ts
Wolfgang Huß cabb844c2c Fix creation date for transaction links for seeding
- Add some commented code for future testing of 'withRedeemed', 'withExpired'.
2022-05-31 10:43:15 +02:00

11 lines
206 B
TypeScript

export interface TransactionLinkInterface {
email: string
amount: number
memo: string
createdAt?: Date
// TODO: for testing
// redeemedAt?: Date
// redeemedBy?: number
deletedAt?: boolean
}