Overview

Summary

ContactDonateImprint


Appendix E-11: FUNDING ROUND (UI prompt)


FundingRoundTechnologyComponentModuleWaymo

Properties (7)

PropertyTypeEntityReferenceModule
(1) AmountUsdDOUBLEFundingRound
(2) CompanyINTFundingRoundCompanyCompanyModule
(3) LeadInvestorSTRINGFundingRound
(4) RoundDateDATEFundingRound
(5) RoundTypeSTRINGFundingRound
(6) SourceNoteSTRINGFundingRound
(7) ValuationUsdDOUBLEFundingRound


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /fundingroundfindAllFundingRound()TechnologyComponentModuleGETFundingRound
(2) /fundingroundinsertFundingRound(fundinground)TechnologyComponentModulePOSTFundingRound
(3) /fundinground/{id}deleteFundingRoundById(id)TechnologyComponentModuleDELETEFundingRound
(4) /fundinground/company/{id}findAllFundingRoundOfCompany(id)TechnologyComponentModuleGETCompany FundingRound
(5) /fundinground/{id}findFundingRoundById(id)TechnologyComponentModuleGETFundingRound
(6) /fundinground/{id}updateFundingRoundById(fundinground)TechnologyComponentModulePUTFundingRound





Example:

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


Overview

Summary

ContactDonateImprint