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

com.sap.cds.services.mt.SmsSubscriptionRequest Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
/**************************************************************************
 * (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;

/**
 * The payload for a subscription request from the SMS (Subscription Manager
 * Service).
 */
public interface SmsSubscriptionRequest extends CdsData {

	static SmsSubscriptionRequest create() {
		return Struct.create(SmsSubscriptionRequest.class);
	}

	static SmsSubscriptionRequest create(Map attributes) {
		return Struct.access(attributes).as(SmsSubscriptionRequest.class);
	}

	SmsSubscriber getSubscriber();

	void setSubscriber(SmsSubscriber subscriber);

	SmsRootApplication getRootApplication();

	void setRootApplication(SmsRootApplication rootApplication);

	SmsServiceInstance getOwnServiceInstance();

	void setOwnServiceInstance(SmsServiceInstance serviceInstance);

	String getEventType();

	void setEventType(String eventType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy