All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.feature.ucl.services.SpiiContext Maven / Gradle / Ivy

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