import { PhoneNumber } from '../PhoneNumber';
/** Call which are repayable */
export interface RepaymentConsumption {
    /** Called number of the call */
    called?: PhoneNumber;
    /** Calling number of the call */
    calling?: PhoneNumber;
    /**  */
    consumptionId: number;
    /** the Datetime of the start of the call */
    creationDatetime?: string;
    /**  */
    dialed?: PhoneNumber;
    /** Duration of the call */
    duration?: number;
    /** Calling number's operator */
    operator?: string;
    /** Price repayed with the call */
    price?: number;
    /** Is the call repayable right now */
    repayable?: boolean;
}
//# sourceMappingURL=RepaymentConsumption.d.ts.map