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

com.sap.cloud.mt.subscription.json.SidecarUnSubscribeCallBackPayload Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
/******************************************************************************
 * © 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