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

com.safecharge.model.OpenOrderCard 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.model;

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

* Holder for Checkout Page's OpenOrder PaymentOption card data. *

* @author Nikola Dichev * @since 3/10/2017 */ public class OpenOrderCard { private String acquirerId; private StoredCredentials storedCredentials; private OpenOrderThreeD threeD; public String getAcquirerId() { return acquirerId; } public void setAcquirerId(String acquirerId) { this.acquirerId = acquirerId; } public StoredCredentials getStoredCredentials() { return storedCredentials; } public void setStoredCredentials(StoredCredentials storedCredentials) { this.storedCredentials = storedCredentials; } public OpenOrderThreeD getThreeD() { return threeD; } public void setThreeD(OpenOrderThreeD threeD) { this.threeD = threeD; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy