import { PaymentInfo } from '../associatedObject/PaymentInfo';
import { TypeEnum } from '../associatedObject/TypeEnum';
/** The object linked to this debt entry */
export interface AssociatedObject {
    /**  */
    id?: string;
    /**  */
    paymentInfo?: PaymentInfo;
    /**  */
    subId?: string;
    /**  */
    type?: TypeEnum;
}
//# sourceMappingURL=AssociatedObject.d.ts.map