org.opencrx.kernel.contract1.cci2.GetPositionAmountsResult 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.535745707Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface GetPositionAmountsResult
{
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code amount}.
* @return The possibly null value for structure field {@code amount}.
*/
public java.math.BigDecimal getAmount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code baseAmount}.
* @return The possibly null value for structure field {@code baseAmount}.
*/
public java.math.BigDecimal getBaseAmount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code baseAmountIncludingTax}.
* @return The possibly null value for structure field {@code baseAmountIncludingTax}.
*/
public java.math.BigDecimal getBaseAmountIncludingTax(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code discountAmount}.
* @return The possibly null value for structure field {@code discountAmount}.
*/
public java.math.BigDecimal getDiscountAmount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code discountAmountIncludingTax}.
* @return The possibly null value for structure field {@code discountAmountIncludingTax}.
*/
public java.math.BigDecimal getDiscountAmountIncludingTax(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code pricePerUnit}.
* @return The possibly null value for structure field {@code pricePerUnit}.
*/
public java.math.BigDecimal getPricePerUnit(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code pricePerUnitIncludingTax}.
* @return The possibly null value for structure field {@code pricePerUnitIncludingTax}.
*/
public java.math.BigDecimal getPricePerUnitIncludingTax(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code statusCode}.
* @return The non-null value for structure field {@code statusCode}.
*/
public short getStatusCode(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code statusMessage}.
* @return The possibly null value for structure field {@code statusMessage}.
*/
public java.lang.String getStatusMessage(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code taxAmount}.
* @return The possibly null value for structure field {@code taxAmount}.
*/
public java.math.BigDecimal getTaxAmount(
);
// ----------------------------------------------------------------------------
// StructureType/Member
// ----------------------------------------------------------------------------
/**
* The structure's members
*/
enum Member {
amount
, baseAmount
, baseAmountIncludingTax
, discountAmount
, discountAmountIncludingTax
, pricePerUnit
, pricePerUnitIncludingTax
, statusCode
, statusMessage
, taxAmount
}
// ----------------------------------------------------------------------------
// StructureType/End
// ----------------------------------------------------------------------------
}