import { Price } from '../order/Price';
import { OperationEnum } from './ovhAccount/OperationEnum';
/** Details about an OVH account */
export interface Movement {
    /**  */
    amount: Price;
    /**  */
    balance: Price;
    /**  */
    date: string;
    /**  */
    description: string;
    /**  */
    movementId: number;
    /**  */
    operation: OperationEnum;
    /**  */
    order: number;
    /**  */
    previousBalance: Price;
    /**  */
    retrievableAmount: Price;
}
//# sourceMappingURL=Movement.d.ts.map