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

com.safecharge.response.AddUPOAPMResponse Maven / Gradle / Ivy

Go to download

SafeCharge’s REST API SDK for Java provides developer tools for accessing Safecharge's REST API. SafeCharge’s REST API is a simple, easy to use, secure and stateless API, which enables online merchants and service providers to process consumer payments through SafeCharge’s payment gateway. The API supports merchants of all levels of PCI certification, from their online and mobile merchant applications, and is compatible with a large variety of payment options, i.e. payment cards, alternative payment methods, etc.

There is a newer version: 1.7.11
Show newest version
package com.safecharge.response;

/**
 * Copyright (C) 2007-2017 SafeCharge International Group Limited.
 * 

* Response received from the SafeCharge's servers to the {@link com.safecharge.request.AddUPOAPMRequest}. * * @author Nikola Dichev * @see com.safecharge.request.AddUPOAPMRequest * @since 3/22/2017 */ public class AddUPOAPMResponse extends SafechargeResponse { /** * The id of the created User Payment Option(UPO), if the request is successful. */ private Long userPaymentOptionId; public Long getUserPaymentOptionId() { return userPaymentOptionId; } public void setUserPaymentOptionId(Long userPaymentOptionId) { this.userPaymentOptionId = userPaymentOptionId; } @Override public String toString() { final StringBuilder sb = new StringBuilder("AddUPOAPMResponse{"); sb.append("userPaymentOptionId=") .append(userPaymentOptionId); sb.append(", ") .append(super.toString()); sb.append('}'); return sb.toString(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy