org.opencrx.kernel.contract1.cci2.GetPositionAmountsParams Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// StructureType/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.contract1.cci2;
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.StructureMapper",
date = "2023-10-28T12:15:36.676122417Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface GetPositionAmountsParams
{
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code overrideDiscount}.
* @return The possibly null value for structure field {@code overrideDiscount}.
*/
public java.math.BigDecimal getOverrideDiscount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code overrideDiscountCalculationType}.
* @return The possibly null value for structure field {@code overrideDiscountCalculationType}.
*/
public java.lang.Short getOverrideDiscountCalculationType(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code overrideDiscountIsPercentage}.
* @return The possibly null value for structure field {@code overrideDiscountIsPercentage}.
*/
public java.lang.Boolean isOverrideDiscountIsPercentage(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code overridePricePerUnit}.
* @return The possibly null value for structure field {@code overridePricePerUnit}.
*/
public java.math.BigDecimal getOverridePricePerUnit(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code overrideQuantity}.
* @return The possibly null value for structure field {@code overrideQuantity}.
*/
public java.math.BigDecimal getOverrideQuantity(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code overrideSalesTaxRate}.
* @return The possibly null value for structure field {@code overrideSalesTaxRate}.
*/
public java.math.BigDecimal getOverrideSalesTaxRate(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code overrideUomScaleFactor}.
* @return The possibly null value for structure field {@code overrideUomScaleFactor}.
*/
public java.math.BigDecimal getOverrideUomScaleFactor(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code position}.
* @return The non-null value for structure field {@code position}.
*/
public org.opencrx.kernel.contract1.cci2.SalesContractPosition getPosition(
);
// ----------------------------------------------------------------------------
// StructureType/Member
// ----------------------------------------------------------------------------
/**
* The structure's members
*/
enum Member {
overrideDiscount
, overrideDiscountCalculationType
, overrideDiscountIsPercentage
, overridePricePerUnit
, overrideQuantity
, overrideSalesTaxRate
, overrideUomScaleFactor
, position
}
// ----------------------------------------------------------------------------
// StructureType/End
// ----------------------------------------------------------------------------
}