import { Price } from '../order/Price';
/** Details about an OVH account */
export interface OvhAccount {
    /**  */
    alertThreshold?: number;
    /**  */
    balance: Price;
    /**  */
    canBeCredited: boolean;
    /**  */
    isActive: boolean;
    /**  */
    lastUpdate: string;
    /**  */
    openDate: string;
    /**  */
    ovhAccountId: string;
}
//# sourceMappingURL=OvhAccount.d.ts.map