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

com.global.api.paymentMethods.INotificationData Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.paymentMethods;

public interface INotificationData {
    // A ReturnUrl is representing after the payment where the transaction return to
    String getReturnUrl();
    INotificationData setReturnUrl(String value);
    // A StatusUpdateUrl is representing after the transaction where the status response will come like SUCCESS/PENDING
    String getStatusUpdateUrl();
    INotificationData setStatusUpdateUrl(String value);
    // A CancelUrl is representing during the payment where the transaction cancels to
    String getCancelUrl();
    INotificationData setCancelUrl(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy