Overview

Summary

ContactDonateImprint


Appendix E-8: INVESTMENT ROUND (UI prompt)


InvestmentRoundCompanyModuleDiscord

Properties (6)

PropertyTypeEntityReferenceModule
(1) AmountUsdDOUBLEInvestmentRound
(2) CompanyLONGInvestmentRoundCompanyCompanyModule
(3) DateDATEInvestmentRound
(4) LeadInvestorSTRINGInvestmentRound
(5) RoundTypeSTRINGInvestmentRound
(6) ValuationUsdDOUBLEInvestmentRound


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /investmentround/{id}deleteInvestmentRoundById(id)CompanyModuleDELETEInvestmentRound
(2) /investmentround/company/{id}findAllInvestmentRoundOfCompany(id)CompanyModuleGETCompany InvestmentRound
(3) /investmentround/{id}findInvestmentRoundById(id)CompanyModuleGETInvestmentRound
(4) /investmentroundinsertInvestmentRound(investmentround)CompanyModulePOSTInvestmentRound
(5) /investmentround/{id}updateInvestmentRoundById(investmentround)CompanyModulePUTInvestmentRound
(6) /investmentroundfindAllInvestmentRound()CompanyModuleGETInvestmentRound





Example:

final InvestmentRound investmentround = (InvestmentRound) invokeModule(COMPANY_MODULE + "/investmentround/" + id, InvestmentRound.class);
if (investmentround != null) {
    final Company company1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + investmentround.getCompany().getId(), Company.class);
    if (company1 != null) {
    }
}
return investmentround;


Overview

Summary

ContactDonateImprint