com.sap.cds.services.mt.SmsUnsubscriptionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cds-feature-mt Show documentation
Show all versions of cds-feature-mt Show documentation
Multi tenancy feature for CDS Services Java
/**************************************************************************
* (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
**************************************************************************/
package com.sap.cds.services.mt;
import java.util.Map;
import com.sap.cds.CdsData;
import com.sap.cds.Struct;
/**
* Payload for a delete subscription request from the SMS (Subscription Manager
* Service).
*/
public interface SmsUnsubscriptionRequest extends CdsData {
static SmsUnsubscriptionRequest create() {
return Struct.create(SmsUnsubscriptionRequest.class);
}
static SmsUnsubscriptionRequest create(Map attributes) {
return Struct.access(attributes).as(SmsUnsubscriptionRequest.class);
}
/**
* Includes the IAS service instance ID of the application.
*
* @return the service instance ID
*/
String getOwnServiceInstance();
void setOwnServiceInstance(String instanceId);
/**
* The dependent service instances separated by ';'.
*r
* @return the dependent service instances
*/
String getServiceInstances();
void setServiceInstances(String instances);
/**
* The application's plan.
*
* @return the app plan
*/
String getPlanName();
void setPlanName(String planName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy