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

com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.Level3SummaryData 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;

/**
 * @deprecated Use ShoppingCart.amountBreakdown instead
 */
@Deprecated
public class Level3SummaryData {

	private Long discountAmount = null;

	private Long dutyAmount = null;

	private Long shippingAmount = null;

	/**
	 * Discount on the entire transaction, with the last 2 digits are implied decimal places
	 *
	 * @deprecated Use ShoppingCart.amountBreakdown with type DISCOUNT instead
	 */
	@Deprecated
	public Long getDiscountAmount() {
		return discountAmount;
	}

	/**
	 * Discount on the entire transaction, with the last 2 digits are implied decimal places
	 *
	 * @deprecated Use ShoppingCart.amountBreakdown with type DISCOUNT instead
	 */
	@Deprecated
	public void setDiscountAmount(Long value) {
		this.discountAmount = value;
	}

	/**
	 * Duty on the entire transaction, with the last 2 digits are implied decimal places
	 *
	 * @deprecated Use ShoppingCart.amountBreakdown with type DUTY instead
	 */
	@Deprecated
	public Long getDutyAmount() {
		return dutyAmount;
	}

	/**
	 * Duty on the entire transaction, with the last 2 digits are implied decimal places
	 *
	 * @deprecated Use ShoppingCart.amountBreakdown with type DUTY instead
	 */
	@Deprecated
	public void setDutyAmount(Long value) {
		this.dutyAmount = value;
	}

	/**
	 * Shippingcost on the entire transaction, with the last 2 digits are implied decimal places
	 *
	 * @deprecated Use ShoppingCart.amountBreakdown with type SHIPPING instead
	 */
	@Deprecated
	public Long getShippingAmount() {
		return shippingAmount;
	}

	/**
	 * Shippingcost on the entire transaction, with the last 2 digits are implied decimal places
	 *
	 * @deprecated Use ShoppingCart.amountBreakdown with type SHIPPING instead
	 */
	@Deprecated
	public void setShippingAmount(Long value) {
		this.shippingAmount = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy