org.opencrx.kernel.contract1.cci2.GetContractAmountsParams 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.631790720Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface GetContractAmountsParams
{
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code contract}.
* @return The non-null value for structure field {@code contract}.
*/
public org.opencrx.kernel.contract1.cci2.SalesContract getContract(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field {@code lineItemNumber}.
* @return A list containing all elements for this structure field.
*/
public java.util.List getLineItemNumber(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field {@code positionAmount}.
* @return A list containing all elements for this structure field.
*/
public java.util.List getPositionAmount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field {@code positionBaseAmount}.
* @return A list containing all elements for this structure field.
*/
public java.util.List getPositionBaseAmount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field {@code positionDiscountAmount}.
* @return A list containing all elements for this structure field.
*/
public java.util.List getPositionDiscountAmount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field {@code positionTaxAmount}.
* @return A list containing all elements for this structure field.
*/
public java.util.List getPositionTaxAmount(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field {@code salesCommission}.
* @return A list containing all elements for this structure field.
*/
public java.util.List getSalesCommission(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field {@code salesCommissionIsPercentage}.
* @return A list containing all elements for this structure field.
*/
public java.util.List getSalesCommissionIsPercentage(
);
// ----------------------------------------------------------------------------
// StructureType/Member
// ----------------------------------------------------------------------------
/**
* The structure's members
*/
enum Member {
contract
, lineItemNumber
, positionAmount
, positionBaseAmount
, positionDiscountAmount
, positionTaxAmount
, salesCommission
, salesCommissionIsPercentage
}
// ----------------------------------------------------------------------------
// StructureType/End
// ----------------------------------------------------------------------------
}