import type { Money } from './Money'; /** * @type AccountTransaction: Document representing an account transaction. * * @property amount: * * @property orderNo: The order number of the gift certificate. * * @property timestamp: The timestamp of the transaction of the gift certificate. * * @property typeCode: The type code of the gift certificate. * */ export type AccountTransaction = { amount: Money; orderNo: string; timestamp: string; typeCode: AccountTransactionTypeCodeEnum; } & { [key: string]: any; }; export type AccountTransactionTypeCodeEnum = 'create' | 'redeem' | 'delete' | 'enable' | 'disable';