Overview

Summary

ContactDonateImprint


Appendix E-7: AI PLATFORM (UI prompt)


AiPlatformSalesChannelModuleShopify

Properties (3)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGAiPlatform
(2) NameSTRINGAiPlatform
(3) ProviderCompanyLONGAiPlatformCompanyCompanyModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /aicommerceintegration/aiplatform/{id}findAllAiCommerceIntegrationOfAiPlatform(id)ProductModuleGETAiPlatform AiCommerceIntegration
(2) /aiplatform/{id}findAiPlatformById(id)SalesChannelModuleGETAiPlatform
(3) /aiplatforminsertAiPlatform(aiplatform)SalesChannelModulePOSTAiPlatform
(4) /aiplatform/{id}deleteAiPlatformById(id)SalesChannelModuleDELETEAiPlatform
(5) /aiplatform/providercompany/{id}findAllAiPlatformOfProviderCompany(id)SalesChannelModuleGETCompany AiPlatform
(6) /aiplatform/{id}updateAiPlatformById(aiplatform)SalesChannelModulePUTAiPlatform
(7) /aiplatformfindAllAiPlatform()SalesChannelModuleGETAiPlatform





Example:

final AiPlatform aiplatform = (AiPlatform) invokeModule(SALES_CHANNEL_MODULE + "/aiplatform/" + id, AiPlatform.class);
if (aiplatform != null) {
    final Company providercompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + aiplatform.getProviderCompany().getId(), Company.class);
    if (providercompany1 != null) {
    }
}
return aiplatform;


Overview

Summary

ContactDonateImprint