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

com.ingenico.direct.domain.GetPaymentProductsResponse Maven / Gradle / Ivy

/*
 * This class was auto-generated from the API references found at
 * https://support.direct.ingenico.com/documentation/api/reference
 */
package com.ingenico.direct.domain;

import java.util.List;

/**
 * The response contains an array of payment products that match the filters supplied in the request.
 */
public class GetPaymentProductsResponse {

	private List paymentProducts = null;

	/**
	 * Array containing payment products and their characteristics
	 */
	public List getPaymentProducts() {
		return paymentProducts;
	}

	/**
	 * Array containing payment products and their characteristics
	 */
	public void setPaymentProducts(List value) {
		this.paymentProducts = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy