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

com.ingenico.direct.domain.ValueMappingElement 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;

/**
 * An array of values and displayNames that should be used to populate the list object in the GUI
 */
public class ValueMappingElement {

	private List displayElements = null;

	private String value = null;

	public List getDisplayElements() {
		return displayElements;
	}

	public void setDisplayElements(List value) {
		this.displayElements = value;
	}

	/**
	 * Value corresponding to the key
	 */
	public String getValue() {
		return value;
	}

	/**
	 * Value corresponding to the key
	 */
	public void setValue(String value) {
		this.value = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy