import { OperationEnum } from './entry/OperationEnum';
import { StatusEnum } from './entry/StatusEnum';
import { Price } from '../order/Price';
/** Operation that happend on a debt */
export interface Operation {
    /** Amount of the operation */
    amount: Price;
    /** Date the operation took place on */
    date: string;
    /** Order id associated to the deposit */
    depositOrderId: number;
    /**  */
    operationId: number;
    /** Status of the operation */
    status: StatusEnum;
    /** Type of movement this operation represents */
    type?: OperationEnum;
}
//# sourceMappingURL=Operation.d.ts.map