com.sap.cds.feature.ucl.services.SpiiContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cds-feature-ucl Show documentation
Show all versions of cds-feature-ucl Show documentation
Unified Customer Landscape feature for CDS Services Java
The newest version!
package com.sap.cds.feature.ucl.services;
import com.sap.cds.CdsData;
import com.sap.cds.Struct;
/**
* A `context` node of the payload provided by UCL which includes metadata of the formation assignment notification.
*/
public interface SpiiContext extends CdsData {
static SpiiContext create() {
return Struct.create(SpiiContext.class);
}
String getPlatform();
String getCrmId();
String getAccountId();
String getUclFormationId();
String getUclFormationName();
String getUclFormationTypeId();
String getOperation();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy