@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
19 lines • 620 B
TypeScript
import { Price } from '../order/Price';
import { StatusEnum } from './entry/StatusEnum';
import { OperationEnum } from './entry/OperationEnum';
/** 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