Overview

Summary

ContactDonateImprint


Appendix E-34: INVESTMENT ROUND (UI prompt)


InvestmentRoundCompanyEntityModuleSpotify

Properties (6)

PropertyTypeEntityReferenceModule
(1) AmountEurDOUBLEInvestmentRound
(2) AmountUsdDOUBLEInvestmentRound
(3) AnnouncedOnDATEInvestmentRound
(4) CompanyEntityLONGInvestmentRoundCompanyEntityCompanyEntityModule
(5) IsDebtBOOLInvestmentRound
(6) RoundNameSTRINGInvestmentRound


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /investmentround/companyentity/{id}findAllInvestmentRoundOfCompanyEntity(id)CompanyEntityModuleGETCompanyEntity InvestmentRound
(2) /investmentroundfindAllInvestmentRound()CompanyEntityModuleGETInvestmentRound
(3) /investmentroundinsertInvestmentRound(investmentround)CompanyEntityModulePOSTInvestmentRound
(4) /investmentround/{id}updateInvestmentRoundById(investmentround)CompanyEntityModulePUTInvestmentRound
(5) /investmentround/{id}deleteInvestmentRoundById(id)CompanyEntityModuleDELETEInvestmentRound
(6) /investmentround/{id}findInvestmentRoundById(id)CompanyEntityModuleGETInvestmentRound
(7) /investmentroundinvestor/investmentround/{id}findAllInvestmentRoundInvestorOfInvestmentRound(id)CountryModuleGETInvestmentRound InvestmentRoundInvestor





Example:

final InvestmentRound investmentround = (InvestmentRound) invokeModule(COMPANY_ENTITY_MODULE + "/investmentround/" + id, InvestmentRound.class);
if (investmentround != null) {
    final CompanyEntity companyentity1 = (CompanyEntity) invokeModule(COMPANY_ENTITY_MODULE + "/companyentity/" + investmentround.getCompanyEntity().getId(), CompanyEntity.class);
    if (companyentity1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + companyentity1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
}
return investmentround;


Overview

Summary

ContactDonateImprint