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

com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.LineItemInvoiceData Maven / Gradle / Ivy

Go to download

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

There is a newer version: 6.47.0
Show newest version
/*
 * This class was auto-generated from the API references found at
 * https://epayments-api.developer-ingenico.com/s2sapi/v1/
 */
package com.ingenico.connect.gateway.sdk.java.domain.payment.definitions;

public class LineItemInvoiceData {

	private String description = null;

	private String merchantLinenumber = null;

	private String merchantPagenumber = null;

	private String nrOfItems = null;

	private Long pricePerItem = null;

	/**
	 * Shopping cart item description
	 */
	public String getDescription() {
		return description;
	}

	/**
	 * Shopping cart item description
	 */
	public void setDescription(String value) {
		this.description = value;
	}

	/**
	 * Line number for printed invoice or order of items in the cart
* Should be a numeric string */ public String getMerchantLinenumber() { return merchantLinenumber; } /** * Line number for printed invoice or order of items in the cart
* Should be a numeric string */ public void setMerchantLinenumber(String value) { this.merchantLinenumber = value; } /** * Page number for printed invoice
* Should be a numeric string */ public String getMerchantPagenumber() { return merchantPagenumber; } /** * Page number for printed invoice
* Should be a numeric string */ public void setMerchantPagenumber(String value) { this.merchantPagenumber = value; } /** * Quantity of the item */ public String getNrOfItems() { return nrOfItems; } /** * Quantity of the item */ public void setNrOfItems(String value) { this.nrOfItems = value; } /** * Price per item */ public Long getPricePerItem() { return pricePerItem; } /** * Price per item */ public void setPricePerItem(Long value) { this.pricePerItem = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy