Overview

Summary

ContactDonateImprint


Appendix E-21: FUNDING ROUND INVESTOR (UI prompt)


FundingRoundInvestorFundingRoundModuleShopify

Properties (3)

PropertyTypeEntityReferenceModule
(1) FundingRoundLONGFundingRoundInvestorFundingRoundFundingRoundModule
(2) InvestorCompanyLONGFundingRoundInvestorCompanyCompanyModule
(3) InvestorRoleSTRINGFundingRoundInvestor


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /fundingroundinvestor/{id}deleteFundingRoundInvestorById(id)FundingRoundModuleDELETEFundingRoundInvestor
(2) /fundingroundinvestor/{id}findFundingRoundInvestorById(id)FundingRoundModuleGETFundingRoundInvestor
(3) /fundingroundinvestor/fundinground/{id}findAllFundingRoundInvestorOfFundingRound(id)FundingRoundModuleGETFundingRound FundingRoundInvestor
(4) /fundingroundinvestorinsertFundingRoundInvestor(fundingroundinvestor)FundingRoundModulePOSTFundingRoundInvestor
(5) /fundingroundinvestor/{id}updateFundingRoundInvestorById(fundingroundinvestor)FundingRoundModulePUTFundingRoundInvestor
(6) /fundingroundinvestorfindAllFundingRoundInvestor()FundingRoundModuleGETFundingRoundInvestor
(7) /fundingroundinvestor/investorcompany/{id}findAllFundingRoundInvestorOfInvestorCompany(id)FundingRoundModuleGETCompany FundingRoundInvestor





Example:

final FundingRoundInvestor fundingroundinvestor = (FundingRoundInvestor) invokeModule(FUNDING_ROUND_MODULE + "/fundingroundinvestor/" + id, FundingRoundInvestor.class);
if (fundingroundinvestor != null) {
    final Company investorcompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + fundingroundinvestor.getInvestorCompany().getId(), Company.class);
    if (investorcompany1 != null) {
    }
    final FundingRound fundinground2 = (FundingRound) invokeModule(FUNDING_ROUND_MODULE + "/fundinground/" + fundingroundinvestor.getFundingRound().getId(), FundingRound.class);
    if (fundinground2 != null) {
        final Company company3 = (Company) invokeModule(COMPANY_MODULE + "/company/" + fundinground2.getCompany().getId(), Company.class);
        if (company3 != null) {
        }
    }
}
return fundingroundinvestor;


Overview

Summary

ContactDonateImprint