com.sap.cloud.mt.subscription.json.SidecarUnSubscribeCallBackPayload Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multi-tenant-subscription Show documentation
Show all versions of multi-tenant-subscription Show documentation
Spring Boot Enablement Parent
/******************************************************************************
* © 2020 SAP SE or an SAP affiliate company. All rights reserved. *
******************************************************************************/
package com.sap.cloud.mt.subscription.json;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* If an asynchronous unsubscribe is performed, the Java application is called back. The
* payload contains information whether sidecar could unsubscribe the tenant.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class SidecarUnSubscribeCallBackPayload {
// SUCCEEDED/FAILED
public String status;//NOSONAR
public String message;//NOSONAR
//the relative url of the saas registry
public String saasCallbackUrl;//NOSONAR
public String tenantId;//NOSONAR
//the payload received by sidecar
public SidecarUnSubscriptionPayload saasRequestPayload;//NOSONAR
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy