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

com.ingenico.direct.domain.GetPaymentProductGroupsResponse 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 product groups that match the filters supplied in the request.
 */
public class GetPaymentProductGroupsResponse {

	private List paymentProductGroups = null;

	/**
	 * Array containing payment product groups and their characteristics
	 */
	public List getPaymentProductGroups() {
		return paymentProductGroups;
	}

	/**
	 * Array containing payment product groups and their characteristics
	 */
	public void setPaymentProductGroups(List value) {
		this.paymentProductGroups = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy