won-dto
Version:
Won DTO For WonCore
12 lines (11 loc) • 457 B
TypeScript
import { BaseDocument } from "../base/baseModel";
import { InternalTransactionEvents, InternalTransactionStatus } from "./internalTransaction.enum";
export declare type InternalTransaction = {
value?: number;
event?: InternalTransactionEvents;
status?: InternalTransactionStatus;
customerAddress?: string;
customerId?: string;
fromClaimerId?: string;
};
export declare type IInternalTransaction = BaseDocument & InternalTransaction;